diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-02-21 10:04:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-21 10:04:56 -0500 |
commit | 9c60ac6f3169f9df37e6c5166844fb9cf5f6766d (patch) | |
tree | f96381edfdb6a31585e7ab3e3e05ded9d41731ec /setup.py | |
parent | a7119e1b26a8bae531b118b7cb8c4b195f731df6 (diff) | |
parent | 811a7302eef99b9f67bfcdde3400322b7557dbab (diff) | |
download | cmd2-git-9c60ac6f3169f9df37e6c5166844fb9cf5f6766d.tar.gz |
Merge pull request #1059 from python-cmd2/deprecate_35
Deprecate support for Python 3.5
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -28,11 +28,11 @@ Intended Audience :: System Administrators License :: OSI Approved :: MIT License Programming Language :: Python Programming Language :: Python :: 3 -Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 +Programming Language :: Python :: 3.10 Programming Language :: Python :: Implementation :: CPython Topic :: Software Development :: Libraries :: Python Modules """.splitlines(), @@ -57,7 +57,6 @@ EXTRAS_REQUIRE = { # Extra dependencies for running unit tests 'test': [ "gnureadline; sys_platform=='darwin'", # include gnureadline on macOS to ensure it is available in nox env - "mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module 'codecov', 'coverage', 'pytest>=4.6', @@ -66,13 +65,11 @@ EXTRAS_REQUIRE = { ], # development only dependencies: install with 'pip install -e .[dev]' 'dev': [ - "mock ; python_version<'3.6'", # for python 3.5 we need the third party mock module "pytest>=4.6", 'codecov', 'pytest-cov', 'pytest-mock', - "nox==2019.11.9 ; python_version=='3.5.2'", - "nox ; python_version>'3.5.2'", + 'nox', 'flake8', 'sphinx', 'sphinx-rtd-theme', @@ -102,7 +99,7 @@ setup( package_data=PACKAGE_DATA, packages=['cmd2'], keywords='command prompt console cmd', - python_requires='>=3.5', + python_requires='>=3.6', setup_requires=SETUP_REQUIRES, install_requires=INSTALL_REQUIRES, extras_require=EXTRAS_REQUIRE, |