From 91d05e9f4918190e506b30030cec155ad30dcd13 Mon Sep 17 00:00:00 2001 From: Christopher Fenner Date: Thu, 6 Nov 2025 23:13:23 +0100 Subject: [PATCH 1/2] add python 3.13 support --- .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 91910e82..09359de9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ["3.10", "3.11", "3.12"] + python: ["3.10", "3.11", "3.12", "3.13"] steps: - name: ⤵️ Check out code from GitHub uses: actions/checkout@v5.0.0 diff --git a/pyproject.toml b/pyproject.toml index be055232..18b94c7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,7 @@ 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", "License :: OSI Approved :: Apache Software License", "Topic :: Software Development :: Libraries :: Python Modules", From e95f783587f30dbdc71dd82c2aff4ce53d10a5bd Mon Sep 17 00:00:00 2001 From: Christopher Fenner Date: Thu, 6 Nov 2025 23:15:44 +0100 Subject: [PATCH 2/2] add python 3.14 support --- .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 09359de9..f6b2938e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ["3.10", "3.11", "3.12", "3.13"] + python: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - name: ⤵️ Check out code from GitHub uses: actions/checkout@v5.0.0 diff --git a/pyproject.toml b/pyproject.toml index 18b94c7c..5c3f51d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Programming Language :: Python :: 3", "License :: OSI Approved :: Apache Software License", "Topic :: Software Development :: Libraries :: Python Modules",