Skip to content

Commit

Permalink
Remove support of EOL Python 3.7
Browse files Browse the repository at this point in the history
Reached end of life 2023-06-27
https://devguide.python.org/versions/
  • Loading branch information
Rotzbua authored and florianfesti committed Sep 3, 2023
1 parent 2ae5a11 commit ce06952
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/typing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def run(self):
author_email='[email protected]',
url='https://github.com/florianfesti/boxes',
packages=find_packages(),
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=['affine>=2.0', 'markdown', 'shapely>=1.8.2', 'qrcode==7.3.1'],
scripts=['scripts/boxes', 'scripts/boxesserver'],
cmdclass={
Expand Down

0 comments on commit ce06952

Please sign in to comment.