Skip to content
Draft
Show file tree
Hide file tree
Changes from all 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
26 changes: 17 additions & 9 deletions .github/workflows/core-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,22 @@ jobs:
fail-fast: true
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
numpy-version: ['1.24.4', '1.25.1', '1.26.4', '2.0.2','2.1.3', '2.2.4', '2.3.1']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
numpy-version: ['1.24.4', '1.25.1', '1.26.4', '2.0.2','2.1.3', '2.2.6', '2.3.3']
# 1.24: 3.11, 1.25: 3.11, 1.26: 3.12
exclude:
- python-version: '3.9'
numpy-version: '2.1.3'
- python-version: '3.9'
numpy-version: '2.2.4'
numpy-version: '2.2.6'
- python-version: '3.9'
numpy-version: '2.3.1'
numpy-version: '2.3.3'
- python-version: '3.10'
numpy-version: '2.3.1'
numpy-version: '2.3.3'
- python-version: '3.12'
numpy-version: '1.24.4'
- python-version: '3.12'
numpy-version: '1.25.1'
- python-version: '3.13'
numpy-version: '1.22.4'
- python-version: '3.13'
numpy-version: '1.23.5'
- python-version: '3.13'
numpy-version: '1.24.4'
- python-version: '3.13'
Expand All @@ -53,6 +49,18 @@ jobs:
numpy-version: '1.26.4'
- python-version: '3.13'
numpy-version: '2.0.2'
- python-version: '3.14'
numpy-version: '1.24.4'
- python-version: '3.14'
numpy-version: '1.25.1'
- python-version: '3.14'
numpy-version: '1.26.4'
- python-version: '3.14'
numpy-version: '2.0.2'
- python-version: '3.14'
numpy-version: '2.1.3'
- python-version: '3.14'
numpy-version: '2.2.6'

steps:
- name: Set up Python ${{ matrix.python-version }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/io-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ['3.9', '3.13']
numpy-version: ['1.26', '2.3.1']
python-version: ['3.9', '3.14']
numpy-version: ['1.26', '2.3.3']
exclude:
- python-version: '3.9'
numpy-version: '2.3.1'
- python-version: '3.13'
numpy-version: '2.3.3'
- python-version: '3.14'
numpy-version: '1.26'
defaults:
# by default run in bash mode (required for conda usage)
Expand Down
Loading