From 0cbdfb28909fe17d8e99e579a579d580c1883fb8 Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Fri, 13 Dec 2024 15:36:00 -0800 Subject: [PATCH] add 3.13 to test matrix --- .github/workflows/tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f2c8974..881ef98 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,20 +15,26 @@ jobs: matrix: platform: ["ubuntu-latest", "macos-latest", "windows-latest"] numpy-version: ["<2.0.0", ">=2.0.0"] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] exclude: - numpy-version: "<2.0.0" python-version: "3.10" - numpy-version: "<2.0.0" python-version: "3.11" + - numpy-version: "<2.0.0" + python-version: "3.12" - platform: "macos-latest" python-version: "3.10" - platform: "macos-latest" python-version: "3.11" + - platform: "macos-latest" + python-version: "3.12" - platform: "windows-latest" python-version: "3.10" - platform: "windows-latest" python-version: "3.11" + - platform: "windows-latest" + python-version: "3.12" runs-on: ${{ matrix.platform }}