summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2022-09-01 13:45:05 -0700
committerGitHub <noreply@github.com>2022-09-01 13:45:05 -0700
commited71471072b860956f56620577f0884845668566 (patch)
tree33c0cada0c5ce38120606bf8faa6173a0734a080
parent041d25af88b9a1d4686e27325982dd6af131450e (diff)
parent8e500aea88140a82539ee2364009abd72425cd08 (diff)
Merge pull request #1078 from dbcli/RW/require-python-3.7-even-more
Require Python 3.7 in `setup.py`
-rw-r--r--changelog.md8
-rwxr-xr-xsetup.py5
2 files changed, 11 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md
index 0f7921c..f07c1a0 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 20afeef..2f69672 100755
--- a/setup.py
+++ b/setup.py
@@ -104,16 +104,17 @@ setup(
'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',