From faa46075c9fc3d6fb2cdf9694b62ae87c08d9019 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 6 Mar 2025 22:28:25 +0100 Subject: [PATCH 1/4] GitHub Actions: Python 3.9 and 3.13 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e06eb5e..cca2af59 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,8 +65,8 @@ jobs: strategy: matrix: python: - - "3.8" # oldest Python supported by PSF - - "3.12" # newest Python that is stable + - "3.9" # oldest Python supported by PSF + - "3.x" # newest Python that is stable platform: - ubuntu-latest - macos-13 From 2d73f5794ed814b8113c5b6bf5fb72e38ab84abf Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 7 Mar 2025 00:53:45 +0100 Subject: [PATCH 2/4] 3.8 is the oldest Python supported by validate-pyproject --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cca2af59..37e1bf86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: strategy: matrix: python: - - "3.9" # oldest Python supported by PSF + - "3.8" # oldest Python supported by validate-pyproject - "3.x" # newest Python that is stable platform: - ubuntu-latest From b565c9b7c4220453e9ee4057ddf7a5f8e918dc1c Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 7 Mar 2025 19:45:18 +0100 Subject: [PATCH 3/4] Py3.12 is required --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37e1bf86..56c84f04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,8 +65,9 @@ jobs: strategy: matrix: python: - - "3.8" # oldest Python supported by validate-pyproject - - "3.x" # newest Python that is stable + - "3.8" # oldest Python supported by validate-pyproject + - "3.12" # This must remain because Py3.12 is hardcoded to block all other tests + - "3.x" # newest Python that is stable platform: - ubuntu-latest - macos-13 From 64c3c552da0d6a044b3bd4f98b3f7b0bb6828724 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Wed, 12 Mar 2025 17:02:38 -0400 Subject: [PATCH 4/4] Update .github/workflows/ci.yml --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56c84f04..76e3da01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,6 @@ jobs: matrix: python: - "3.8" # oldest Python supported by validate-pyproject - - "3.12" # This must remain because Py3.12 is hardcoded to block all other tests - "3.x" # newest Python that is stable platform: - ubuntu-latest