Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/check-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,16 @@ 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"

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:

#----------------------------------------------
Expand Down