From d1d01b242c272c7801ec8c62d5fd1f26f444d452 Mon Sep 17 00:00:00 2001 From: Daniel Carrillo Date: Fri, 22 Mar 2024 16:49:17 +0100 Subject: [PATCH] Drop support for python 3.7 --- .github/workflows/main.yml | 2 +- README.md | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6502226..896a390 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: 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: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index f52625b..fc32bbf 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ a cached version until a new version is published. ## Requirements -Python >= 3.7 +Python >= 3.8 Tests are verified on Linux, macos and Windows. diff --git a/setup.py b/setup.py index 493cc23..2c2e876 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', ], - python_requires='>=3.7', + python_requires='>=3.8', entry_points={ 'console_scripts': ['digaws=digaws.digaws:main'] },