From 364936104bf632d385f7fb0c40e4b092d6755d52 Mon Sep 17 00:00:00 2001 From: David Hu Date: Sun, 19 Jul 2026 13:01:25 -0700 Subject: [PATCH 1/2] ci: refresh Python test matrix to supported releases Drop EOL 3.8/3.9 and add 3.14 so pytest covers currently supported Python versions. Co-authored-by: Cursor --- .github/workflows/run-tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 9e478ea..083a7d3 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -20,12 +20,11 @@ jobs: fail-fast: false matrix: python-version: - - "3.8" - - "3.9" - "3.10" - "3.11" - "3.12" - "3.13" + - "3.14" steps: #---------------------------------------------- # ----- checkout & setup python ----- From fe9d73af75d24a25f02a9731a63fcf94482cd9c0 Mon Sep 17 00:00:00 2001 From: David Hu Date: Sun, 19 Jul 2026 13:02:42 -0700 Subject: [PATCH 2/2] ci: drop Python 3.14 from the pytest matrix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keep the matrix on currently supported 3.10–3.13 for now. Co-authored-by: Cursor --- .github/workflows/run-tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 083a7d3..ae71956 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -24,7 +24,6 @@ jobs: - "3.11" - "3.12" - "3.13" - - "3.14" steps: #---------------------------------------------- # ----- checkout & setup python -----