Skip to content

Commit 9aeeaa1

Browse files
committed
bail on making np upper bound super flexible
1 parent dc113f6 commit 9aeeaa1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
python-version: ['3.11', '3.12', '3.13']
24-
numpy-version: ['1.25', '2']
24+
numpy-version: ['1.25', '2.1']
2525
dependency-set: ["minimal", "optional"]
2626
os: ["ubuntu-latest"]
2727
include:
@@ -30,15 +30,15 @@ jobs:
3030
dependency-set: 'optional'
3131
os: 'macos-latest'
3232
- python-version: '3.13'
33-
numpy-version: '2'
33+
numpy-version: '2.1'
3434
dependency-set: 'optional'
3535
os: 'macos-latest'
3636
- python-version: '3.11'
3737
numpy-version: '1.25'
3838
dependency-set: 'optional'
3939
os: 'windows-latest'
4040
- python-version: '3.13'
41-
numpy-version: '2'
41+
numpy-version: '2.1'
4242
dependency-set: 'optional'
4343
os: 'windows-latest'
4444
runs-on: ${{ matrix.os }}

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,17 +135,17 @@ features = ["test", "extra"]
135135

136136
[[tool.hatch.envs.test.matrix]]
137137
python = ["3.11", "3.12", "3.13"]
138-
numpy = ["1.25", "2"]
138+
numpy = ["1.25", "2.1"]
139139
version = ["minimal"]
140140

141141
[[tool.hatch.envs.test.matrix]]
142142
python = ["3.11", "3.12", "3.13"]
143-
numpy = ["1.25", "2"]
143+
numpy = ["1.25", "2.1"]
144144
features = ["optional"]
145145

146146
[[tool.hatch.envs.test.matrix]]
147147
python = ["3.11", "3.12", "3.13"]
148-
numpy = ["1.25", "2"]
148+
numpy = ["1.25", "2.1"]
149149
features = ["gpu"]
150150

151151
[tool.hatch.envs.test.scripts]
@@ -166,7 +166,7 @@ features = ["test", "extra", "gpu"]
166166

167167
[[tool.hatch.envs.gputest.matrix]]
168168
python = ["3.11", "3.12", "3.13"]
169-
numpy = ["1.25", "2"]
169+
numpy = ["1.25", "2.1"]
170170
version = ["minimal"]
171171

172172
[tool.hatch.envs.gputest.scripts]

0 commit comments

Comments
 (0)