From 65b530f28920c044af9efe78c48460c055acb097 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 2 Sep 2025 13:52:56 +0200 Subject: [PATCH 1/2] GitHub Actions: Add Python 3.x and 3.14 to test matrix --- .github/workflows/test-suite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index c3ad08f14..038162313 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.x", "3.14"] steps: - uses: "actions/checkout@v4" From a3a80c9fdfe7b8cd974c2eeccf2eb31b2e29a9c6 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 2 Sep 2025 20:12:14 +0200 Subject: [PATCH 2/2] Update .github/workflows/test-suite.yml Co-authored-by: Kim Christie --- .github/workflows/test-suite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 038162313..4db2b4755 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.x", "3.14"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: "actions/checkout@v4"