Skip to content

Commit 80e2e45

Browse files
authored
Merge pull request #1709 from zm711/update-ci
Update IO tests for Python 3.13 Add NumPy 2.3 for core tests
2 parents 10d6ab5 + ba692a8 commit 80e2e45

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.github/workflows/core-test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,17 @@ jobs:
2626
matrix:
2727
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
2828
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
29-
numpy-version: ['1.24.4', '1.25.1', '1.26.4', '2.0.2','2.1.3', '2.2.4']
29+
numpy-version: ['1.24.4', '1.25.1', '1.26.4', '2.0.2','2.1.3', '2.2.4', '2.3.1']
3030
# 1.24: 3.11, 1.25: 3.11, 1.26: 3.12
3131
exclude:
3232
- python-version: '3.9'
3333
numpy-version: '2.1.3'
3434
- python-version: '3.9'
3535
numpy-version: '2.2.4'
36+
- python-version: '3.9'
37+
numpy-version: '2.3.1'
38+
- python-version: '3.10'
39+
numpy-version: '2.3.1'
3640
- python-version: '3.12'
3741
numpy-version: '1.24.4'
3842
- python-version: '3.12'

.github/workflows/io-test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,13 @@ jobs:
1818
strategy:
1919
fail-fast: true
2020
matrix:
21-
python-version: ['3.9', '3.12']
22-
numpy-version: ['1.26', '2.0']
21+
python-version: ['3.9', '3.13']
22+
numpy-version: ['1.26', '2.3.1']
23+
exclude:
24+
- python-version: '3.9'
25+
numpy-version: '2.3.1'
26+
- python-version: '3.13'
27+
numpy-version: '1.26'
2328
defaults:
2429
# by default run in bash mode (required for conda usage)
2530
run:

0 commit comments

Comments
 (0)