From b2db99c52400d2bce7e67723b36b97456e900a36 Mon Sep 17 00:00:00 2001 From: amc-corey-cox <69321580+amc-corey-cox@users.noreply.github.com> Date: Wed, 14 May 2025 13:03:23 -0500 Subject: [PATCH 1/2] Test on all current Python versions --- .github/workflows/check-pull-request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-pull-request.yaml b/.github/workflows/check-pull-request.yaml index dcacef0..1b037d6 100644 --- a/.github/workflows/check-pull-request.yaml +++ b/.github/workflows/check-pull-request.yaml @@ -18,7 +18,7 @@ jobs: matrix: # os: [ ubuntu-latest, windows-latest ] - Exclude windows for now os: [ ubuntu-latest ] - python-version: [ "3.9", "3.10" ] + python-version: [ "3.9", "3.10", "3.11", "3.12" , "3.13" ] exclude: - os: windows-latest python-version: "3.9" From 32e5f4c768c62be04679fdc37a41e63b2dcd3fdf Mon Sep 17 00:00:00 2001 From: amc-corey-cox <69321580+amc-corey-cox@users.noreply.github.com> Date: Wed, 14 May 2025 13:23:29 -0500 Subject: [PATCH 2/2] Allow Python 3.13 to fail due to scipy --- .github/workflows/check-pull-request.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/check-pull-request.yaml b/.github/workflows/check-pull-request.yaml index 1b037d6..8282692 100644 --- a/.github/workflows/check-pull-request.yaml +++ b/.github/workflows/check-pull-request.yaml @@ -25,6 +25,9 @@ jobs: runs-on: ${{ matrix.os }} + # Allow Python 3.13 to fail due to scipy not being available yet + continue-on-error: ${{ matrix.python-version == '3.13' }} + steps: #----------------------------------------------