From 04e77ae90dc509baf780c74355ad91faeef7d18c Mon Sep 17 00:00:00 2001 From: Jacob Schaer Date: Thu, 6 Mar 2025 20:53:44 -0800 Subject: [PATCH 1/2] Exclude 3.7 from ubuntu-latest --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7eb912b..ad95b95 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,6 +16,8 @@ jobs: exclude: - os: ubuntu-latest python-version: 3.6 + - os: ubuntu-latest + python-version: 3.7 steps: - uses: actions/checkout@v3 From ce2258b27e6a57be02c9e006d8af411931aad5f2 Mon Sep 17 00:00:00 2001 From: Jacob Schaer Date: Thu, 6 Mar 2025 20:55:45 -0800 Subject: [PATCH 2/2] Add python 3.12 and 3.13 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ad95b95..6868d75 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, ubuntu-20.04] - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] exclude: - os: ubuntu-latest python-version: 3.6