From f0921509b42951d8321f2ff3223266a17791c39e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Fri, 17 Oct 2025 12:53:51 -0600 Subject: [PATCH] chore: Add Python 3.15 to our test matrix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Edgar Ramírez Mondragón --- .github/workflows/ci.yaml | 1 + pyproject.toml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ee0992c..7680bb3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,6 +35,7 @@ jobs: - "3.12" - "3.13" - "3.14" + - "3.15" include: - os: ubuntu-22.04 python-version: "3.7" diff --git a/pyproject.toml b/pyproject.toml index 4099ed8..229ac37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", + "Programming Language :: Python :: 3.15", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities", @@ -78,6 +79,7 @@ env_list = [ "3.12", "3.13", "3.14", + "3.15", "coverage", "lint", "typing", @@ -101,6 +103,7 @@ depends = [ "3.12", "3.13", "3.14", + "3.15", ] dependency_groups = [ "test" ] commands = [ @@ -138,6 +141,7 @@ commands = [ ] [tool.tox.gh.python] +"3.15" = ["3.15"] "3.14" = ["3.14", "lint", "typing"] "3.13" = ["3.13"] "3.12" = ["3.12"]