From 9b500d60daefcb8e331fe037c3244ffc3bcbe6b4 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Fri, 20 Sep 2024 12:40:24 +0200 Subject: [PATCH] CI: Start testing on Python 3.13 Also updates the remainder of the matrix, to use the cheaper ubuntu jobs and to the latest PyPy. --- .github/workflows/tests.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6c7206d3..68e912c9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,16 +24,18 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.8", "3.12"] + python-version: ["3.8", "3.13"] include: - - os: windows-latest - python-version: "3.9" - os: ubuntu-latest - python-version: "pypy-3.8" + python-version: "3.9" - os: ubuntu-latest python-version: "3.10" - - os: macos-latest + - os: ubuntu-latest python-version: "3.11" + - os: ubuntu-latest + python-version: "3.12" + - os: ubuntu-latest + python-version: "pypy-3.10" steps: - uses: actions/checkout@v4