From 2bf8a6cab9b2e29b61965c71d98b2d35a00759d4 Mon Sep 17 00:00:00 2001 From: mrava87 Date: Wed, 5 Aug 2026 17:57:01 +0100 Subject: [PATCH 1/2] ci: added py3.14 and 3.14t to github actions --- .github/workflows/build.yaml | 2 +- .github/workflows/buildft.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b9c177a5..843fd8cf 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,7 @@ jobs: strategy: matrix: platform: [ ubuntu-latest, macos-latest ] - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] runs-on: ${{ matrix.platform }} diff --git a/.github/workflows/buildft.yaml b/.github/workflows/buildft.yaml index a57351c6..95fbe5e2 100644 --- a/.github/workflows/buildft.yaml +++ b/.github/workflows/buildft.yaml @@ -13,7 +13,7 @@ jobs: strategy: matrix: platform: [ ubuntu-latest, macos-latest ] - python-version: ["3.13t"] + python-version: ["3.13t", "3.14t"] runs-on: ${{ matrix.platform }} From 04fb8033297d5e3d686a53bb8e501745b61c5e36 Mon Sep 17 00:00:00 2001 From: mrava87 Date: Wed, 5 Aug 2026 18:52:06 +0100 Subject: [PATCH 2/2] build: added py3.13 and 3.14 to pyproject.toml --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 876d3829..55fa7c54 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,6 +26,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", "Topic :: Scientific/Engineering :: Mathematics", ] requires-python = ">=3.10"