diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-02-20 20:19:23 -0500 |
|---|---|---|
| committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-02-20 20:19:23 -0500 |
| commit | 67ea0627879e10e47380482156b1421862e3c956 (patch) | |
| tree | 6539268b30382d59d5d77fbc1b36e8e4daecbc92 /setup.py | |
| parent | a7119e1b26a8bae531b118b7cb8c4b195f731df6 (diff) | |
| download | cmd2-git-67ea0627879e10e47380482156b1421862e3c956.tar.gz | |
Deprecate 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, |
