diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 3026ce9..fd6dddb 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -5,7 +5,7 @@ jobs: strategy: fail-fast: false matrix: - python_version: ["3.10", "3.9", "3.8", "3.11"] + python_version: ["3.10", "3.9", "3.8", "3.11", "3.12", "3.13", "3.14"] runs-on: ubuntu-latest steps: - name: Checkout diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 27fd867..cf38488 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,10 +21,10 @@ repos: - "120" - repo: https://github.com/asottile/pyupgrade - rev: v3.15.0 + rev: v3.21.2 hooks: - id: pyupgrade - args: ["--py38-plus"] + args: ["--py38-plus", "--keep-runtime-typing"] - repo: https://github.com/pre-commit/mirrors-mypy rev: 'v1.6.1' diff --git a/setup.cfg b/setup.cfg index 9c220d1..7978b8d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,9 @@ classifiers = 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 + Programming Language :: Python :: 3.14 license_files = LICENSE diff --git a/tox.ini b/tox.ini index 7cb38df..26e9929 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38,py39,py310,py311 +envlist = py38,py39,py310,py311,py312,py313,py314 [testenv] deps = -rrequirements-dev.txt