From 31d3f04cc37e38edc5d090dfe5ba97bef32c2e72 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Tue, 29 Oct 2024 08:56:20 +0100 Subject: [PATCH 1/2] Add py313 and np2 tests --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b640a99..1322e4d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,21 +3,21 @@ name: Tests on: pull_request: push: - branches: [master, main] + branches: [ master, main ] jobs: run: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] - os: [windows-latest, ubuntu-latest, macos-latest] + python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ] + os: [ windows-latest, ubuntu-latest, macos-latest ] # Oldest one based on NEP-29 and latest one. # See https://numpy.org/neps/nep-0029-deprecation_policy.html - numpy-version: ["1.23", "1.26"] + numpy-version: [ "1.25", "2" ] exclude: - - python-version: "3.12" - numpy-version: "1.23" + - python-version: "3.13" + numpy-version: "1.25" fail-fast: false steps: From 86b272c62212dc65b2ead94a8cd7dcb236c8ddbc Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Tue, 29 Oct 2024 08:58:43 +0100 Subject: [PATCH 2/2] use np 1.26 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1322e4d..4ff7a0f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,10 +14,10 @@ jobs: os: [ windows-latest, ubuntu-latest, macos-latest ] # Oldest one based on NEP-29 and latest one. # See https://numpy.org/neps/nep-0029-deprecation_policy.html - numpy-version: [ "1.25", "2" ] + numpy-version: [ "1.26", "2" ] exclude: - python-version: "3.13" - numpy-version: "1.25" + numpy-version: "1.26" fail-fast: false steps: