From 98444cbf1a529acd4af997353b4be879073a91a6 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Tue, 29 Oct 2024 20:52:13 +0000 Subject: [PATCH] Drop Python 3.8 (#57) --- .github/workflows/ci.yaml | 2 +- .pre-commit-config.yaml | 2 +- setup.cfg | 7 ++++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 499df26..b7c70ae 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,7 +30,7 @@ jobs: test: strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] runs-on: ubuntu-latest steps: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8cc03bb..5f09694 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,7 +10,7 @@ repos: hooks: - id: yesqa - repo: https://github.com/Zac-HD/shed - rev: 2023.6.1 # 0.7 does not support Python 3.7 + rev: 2023.6.1 hooks: - id: shed args: diff --git a/setup.cfg b/setup.cfg index 2504267..09ba964 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,10 +19,11 @@ classifiers = License :: OSI Approved :: Apache Software License - Programming Language :: Python :: 3.7 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 Topic :: Software Development :: Testing @@ -32,7 +33,7 @@ classifiers = Typing :: Typed [options] -python_requires = >=3.7 +python_requires = >=3.9 packages = find: include_package_data = True