From c5d5d205c19d9bef6d790d6a68f8303a10462631 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Mon, 31 Jul 2023 12:46:37 +0100 Subject: [PATCH] Drop Python 3.7 support It's EOL [1]. [1] https://devguide.python.org/versions/ Signed-off-by: Stephen Finucane --- .github/workflows/ci.yaml | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 71bb1fb..e2084c9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python: ["3.8", "3.9", "3.10", "3.11"] steps: - name: Checkout source code uses: actions/checkout@v3 diff --git a/setup.cfg b/setup.cfg index 4472614..93794ec 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,7 +24,7 @@ classifiers = Programming Language :: Python :: 3 :: Only Topic :: Documentation Topic :: Utilities -python_requires = >=3.7 +python_requires = >=3.8 keywords = sphinx [files]