From 88fea44b4a4d91bda93cbd8310dbecae79e37e0b Mon Sep 17 00:00:00 2001 From: Ben Kiel Date: Mon, 18 Nov 2024 13:34:06 -0600 Subject: [PATCH] Stop testing 3.8, start testing 3.12, 3.13 --- .github/workflows/run-tests.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f60af39a..7fabb7c9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -18,17 +18,21 @@ jobs: if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')" strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] platform: [ubuntu-latest, macos-latest, windows-latest] exclude: # Only test on the oldest and latest supported stable Python on macOS and Windows. - - platform: macos-latest - python-version: 3.9 - - platform: windows-latest - python-version: 3.9 - platform: macos-latest python-version: 3.10 - platform: windows-latest python-version: 3.10 + - platform: macos-latest + python-version: 3.11 + - platform: windows-latest + python-version: 3.11 + - platform: macos-latest + python-version: 3.13 + - platform: windows-latest + python-version: 3.13 steps: - uses: actions/checkout@v3.5.3 - name: Set up Python ${{ matrix.python-version }}