From 86ce95d056bbadf60efffaf0bb8886ba19affa44 Mon Sep 17 00:00:00 2001 From: Yangong Date: Thu, 16 Apr 2026 02:15:52 +0000 Subject: [PATCH] feat: Add support for Python 3.13 and 3.14 - Update requires-python from '>=3.10,<3.13' to '>=3.10,<3.15' - Add Python 3.13 and 3.14 to classifiers - Add Python 3.13 and 3.14 to CI test matrix --- .github/workflows/ci.yml | 2 +- pyproject.toml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0503551..553b3bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13', '3.14'] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 2b1b774..5b54c31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["maturin>=1.0,<2.0"] build-backend = "maturin" [project] -requires-python = ">=3.10,<3.13" +requires-python = ">=3.10,<3.15" authors = [ { name = "Josh Learn", email = "josh@exponent.run" }, { name = "Indent", email = "noreply@indent.com" }, @@ -16,6 +16,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", "Programming Language :: Rust", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing",