From 89a0dcad087517dd7944c686f57b72b8510c4b1a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 12:27:17 +0000 Subject: [PATCH 1/2] Add Python 3.13, 3.14 and 3.15 to the CI test matrix --- .github/python-versions.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/python-versions.json b/.github/python-versions.json index b9254d0..295f602 100644 --- a/.github/python-versions.json +++ b/.github/python-versions.json @@ -1,4 +1,10 @@ { - "test": ["3.11", "3.12"], + "test": [ + "3.11", + "3.12", + "3.13", + "3.14", + "3.15" + ], "docs": "3.12" } From a4d2e479e79467b3e1d242a93812774b38e56871 Mon Sep 17 00:00:00 2001 From: Charles Bouman Date: Wed, 12 Aug 2026 08:33:04 -0400 Subject: [PATCH 2/2] Drop 3.15: torch ships wheels for it but GitHub runners do not provide it yet Co-Authored-By: Claude Fable 5 --- .github/python-versions.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/python-versions.json b/.github/python-versions.json index 295f602..3f62ac7 100644 --- a/.github/python-versions.json +++ b/.github/python-versions.json @@ -3,8 +3,7 @@ "3.11", "3.12", "3.13", - "3.14", - "3.15" + "3.14" ], "docs": "3.12" }