diff options
Diffstat (limited to 'plugins/ext_test/setup.py')
-rw-r--r-- | plugins/ext_test/setup.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/ext_test/setup.py b/plugins/ext_test/setup.py index 7dc55f6a..cab366b8 100644 --- a/plugins/ext_test/setup.py +++ b/plugins/ext_test/setup.py @@ -33,7 +33,7 @@ setuptools.setup( license='MIT', package_data=PACKAGE_DATA, packages=['cmd2_ext_test'], - python_requires='>=3.5', + python_requires='>=3.6', install_requires=['cmd2 >= 0.9.4, <=2'], setup_requires=['setuptools >= 42', 'setuptools_scm >= 3.4'], classifiers=[ @@ -43,12 +43,11 @@ setuptools.setup( 'Topic :: Software Development :: Libraries :: Python Modules', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.4', - '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', ], # dependencies for development and testing # $ pip install -e .[dev] |