Skip to content

Commit 47ccdad

Browse files
committed
ci: restrict numpy v1 test with <=3.12
1 parent 14c8eb0 commit 47ccdad

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Diff for: pyproject.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,14 @@ matrix-name-format = "{variable}={value}"
5656
test = "pytest {args}"
5757

5858
[[tool.hatch.envs.test.matrix]]
59-
python = ["3.10", "3.11", "3.12", "3.13"]
59+
python = ["3.10", "3.11", "3.12"]
6060
numpy-version = ["1", "2"]
6161

62+
# Only test numpy 2 with python 3.13
63+
[[tool.hatch.envs.test.matrix]]
64+
python = ["3.13"]
65+
numpy-version = ["2"]
66+
6267

6368
[tool.hatch.envs.test.overrides]
6469
matrix.numpy-version.dependencies = [

0 commit comments

Comments
 (0)