From efebd1ca623095a280b87a78e9591a82a7d59d7f Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 14 May 2026 08:18:20 -0700 Subject: [PATCH] chore: add Python 3.15 to CI test matrix and classifiers (#2850) test: add Python 3.15 to CI test matrix and classifiers Update the Max Python CI job from 3.14 to 3.15 and add the Programming Language :: Python :: 3.15 classifier to pyproject.toml. Assisted-by: OpenCode:GLM-5 --- .github/workflows/test.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 010c8e85..4d5f3613 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -85,7 +85,7 @@ jobs: python_version: '3.11' # Max Python - os: ubuntu-latest - python_version: '3.14' + python_version: '3.15' - os: ubuntu-latest python_version: '3.14' test_select: android diff --git a/pyproject.toml b/pyproject.toml index 1f456ed1..1a011a11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,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 :: Software Development :: Build Tools", ]