From 95ce09a9eae394f4584d3abbfc25bb501d4be586 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Wed, 26 Mar 2025 11:20:23 -0700 Subject: [PATCH 1/2] ci: test Python 3.13 and 3.14.0-alpha - 3.14 Also stop testing Python 3.8 as it is End-of-Life as of 2024-10-07. https://devguide.python.org/versions/ --- .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..689457fab 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.9", "3.10", "3.11", "3.12", "3.13", "3.14.0-alpha - 3.14"] steps: - uses: "actions/checkout@v4" From beb30d5ffbcb630fcd2e1e627bbbbc9674c6c0ed Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Tue, 1 Apr 2025 10:26:10 +0100 Subject: [PATCH 2/2] Update .github/workflows/test-suite.yml Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> --- .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 689457fab..e22f7ebf3 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14.0-alpha - 3.14"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: "actions/checkout@v4"