Skip to content

Commit 0c542ca

Browse files
committed
Update test matrix
1 parent 3f36bd4 commit 0c542ca

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
python-version: ["3.9", "3.10", "3.11", "3.12"]
26+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2727
steps:
2828
- uses: actions/checkout@v3
2929
- name: Set up Python ${{ matrix.python-version }}

tox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tox]
2-
envlist = global-init,py39-numpy{1.21,1.22,1.23,1.24,1.25,1.26,2.0},py310-numpy{1.21,1.22,1.23,1.24,1.25,1.26,2.0},py311-numpy{1.23,1.24,1.25,1.26,2.0},py312-numpy{1.26,2.0},global-finalize
2+
envlist = global-init,py39-numpy{1.25,1.26,2.0},py310-numpy{1.25,1.26,2.0,2.1,2.2},py311-numpy{1.25,1.26,2.0,2.1,2.2},py312-numpy{1.26,2.0,2.1,2.2},py313-numpy{2.1,2.2},global-finalize
33

44
[gh-actions]
55
python =
66
3.9: py39
77
3.10: py310
88
3.11: py311
99
3.12: py312
10+
3.13: py313
1011

1112
[testenv:global-init]
1213
skip_install = True
@@ -20,13 +21,11 @@ usedevelop = True
2021
deps =
2122
pytest
2223
pytest-cov
23-
numpy1.21: numpy>=1.21,<1.22
24-
numpy1.22: numpy>=1.22,<1.23
25-
numpy1.23: numpy>=1.23,<1.24
26-
numpy1.24: numpy>=1.24,<1.25
2724
numpy1.25: numpy>=1.25,<1.26
2825
numpy1.26: numpy>=1.26,<1.27
2926
numpy2.0: numpy>=2.0,<2.1
27+
numpy2.1: numpy>=2.1,<2.2
28+
numpy2.2: numpy>=2.2,<2.3
3029
setenv =
3130
COVERAGE_FILE = {toxworkdir}/.coverage.{envname}
3231
commands = py.test test -v --cov=plyfile

0 commit comments

Comments
 (0)