From 8f1ce6a015ad400efb376377eb2b250329c8cbb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Mon, 20 Jul 2026 21:56:51 -0700 Subject: [PATCH 1/2] Add Python 3.15 to CI --- .github/workflows/check.yaml | 2 ++ tox.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index b637350..c3148d5 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -19,6 +19,8 @@ jobs: fail-fast: false matrix: env: + - "3.15t" + - "3.15" - "3.14t" - "3.14" - "3.13" diff --git a/tox.toml b/tox.toml index 52df9c1..0be3de8 100644 --- a/tox.toml +++ b/tox.toml @@ -1,5 +1,5 @@ requires = [ "tox>=4.56.1", "tox-uv>=1.35.2" ] -env_list = [ "3.14", "3.13", "3.12", "3.11", "3.14t", "fix", "pkg_meta", "type" ] +env_list = [ "3.15", "3.14", "3.13", "3.12", "3.11", "3.14t", "3.15t", "fix", "pkg_meta", "type" ] skip_missing_interpreters = true [env_run_base] From 141197536120eae2ff2beebc933af9080d269058 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Mon, 20 Jul 2026 22:29:53 -0700 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=93=A6=20pkg:=20declare=20Python=203.?= =?UTF-8?q?15=20support?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 51b6a37..70311f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,6 +31,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", + "Programming Language :: Python :: 3.15", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Documentation", "Topic :: Documentation :: Sphinx", @@ -128,7 +129,7 @@ builtin = "clear,usage,en-GB_to_en-US" count = true [tool.pyproject-fmt] -max_supported_python = "3.14" +max_supported_python = "3.15" [tool.ty] environment.python-version = "3.14"