From e06027b1691ac7269753fe3fffe3174030434cbe Mon Sep 17 00:00:00 2001 From: yozik04 Date: Tue, 14 Oct 2025 22:40:37 +0300 Subject: [PATCH] Test with Python 3.13 and 3.14 --- .github/workflows/test.yml | 2 ++ pyproject.toml | 2 +- setup.cfg | 2 ++ tox.ini | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e05c009..e01a2a0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,6 +24,8 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" + - "3.14" steps: - uses: actions/checkout@v5 diff --git a/pyproject.toml b/pyproject.toml index d32c4ad..406714c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools>=46.4.0"] build-backend = "setuptools.build_meta" [tool.black] -target-version = ["py39", "py310", "py311", "py312"] +target-version = ["py39", "py310", "py311", "py312", "py313", "py314"] exclude = 'generated' [tool.isort] diff --git a/setup.cfg b/setup.cfg index 1c3387a..0be61b8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,6 +21,8 @@ classifiers = 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 = LGPL 3 [options] diff --git a/tox.ini b/tox.ini index d4d3e16..e90bf48 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py39, py310, py311, py312 +envlist = py39, py310, py311, py312, py313, py314 isolated_build = True skip_missing_interpreters = True