Skip to content

Commit

Permalink
require Python 3.7 in setup.py
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rolandwalker committed Sep 1, 2022
1 parent 041d25a commit 8e500ae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

TBD
===

Bug Fixes:
----------
* Require Python 3.7 in `setup.py`


1.26.0 (2022/09/01)
===================

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 8e500ae

Please sign in to comment.