Drop support for python 3.7

This commit is contained in:
Daniel Carrillo 2024-03-22 16:49:17 +01:00
parent e2f0f4f63c
commit d1d01b242c
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] python-version: ["3.8", "3.9", "3.10", "3.11"]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View File

@ -9,7 +9,7 @@ a cached version until a new version is published.
## Requirements ## Requirements
Python >= 3.7 Python >= 3.8
Tests are verified on Linux, macos and Windows. Tests are verified on Linux, macos and Windows.

View File

@ -25,7 +25,7 @@ setup(
'License :: OSI Approved :: Apache Software License', 'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
], ],
python_requires='>=3.7', python_requires='>=3.8',
entry_points={ entry_points={
'console_scripts': ['digaws=digaws.digaws:main'] 'console_scripts': ['digaws=digaws.digaws:main']
}, },