From 8e500aea88140a82539ee2364009abd72425cd08 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Thu, 1 Sep 2022 16:40:11 -0400 Subject: [PATCH] require Python 3.7 in setup.py which may affect mycli.egg-info/PKG-INFO. As long as we are editing, add 3.9 and 3.10 explicitly to the classifiers array. --- changelog.md | 8 ++++++++ setup.py | 5 +++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 0f7921ce..f07c1a09 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,12 @@ +TBD +=== + +Bug Fixes: +---------- +* Require Python 3.7 in `setup.py` + + 1.26.0 (2022/09/01) =================== diff --git a/setup.py b/setup.py index 20afeef8..2f69672d 100755 --- a/setup.py +++ b/setup.py @@ -104,16 +104,17 @@ def run_tests(self): 'console_scripts': ['mycli = mycli.main:cli'], }, cmdclass={'lint': lint, 'test': test}, - python_requires=">=3.6", + python_requires=">=3.7", classifiers=[ 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: Unix', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - '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 :: SQL', 'Topic :: Database', 'Topic :: Database :: Front-Ends',