From cfa090c6abc03c449a9c9b9da3ed5b5b0e6a1a38 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Wed, 2 Oct 2024 08:43:49 +0200 Subject: [PATCH] CI: Start testing on Python 3.13 (#910) --- .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