Skip to content

Commit

Permalink
Merge pull request #416 from macbre/ci/drop-py3.7
Browse files Browse the repository at this point in the history
Drop Python 3.7 support
  • Loading branch information
macbre authored Sep 13, 2023
2 parents 9ccb154 + e3957f3 commit 22f9535
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:

matrix:
# Python version(s) to use when running the tests
# # https://github.com/actions/python-versions/blob/main/versions-manifest.json
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"

# Docker images of MySQL-compliant databases to run the tests suite on
database:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
packages=find_packages(),
python_requires='>=3.8',
extras_require={
'dev': [
'coverage==6.5.0',
Expand Down

0 comments on commit 22f9535

Please sign in to comment.