We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39400a6 commit bd49a46Copy full SHA for bd49a46
.github/workflows/tests.yml
@@ -136,6 +136,11 @@ jobs:
136
pip install -e ".[test]"
137
pip install pytest-cov
138
139
+ # We need to downgrade to numpy<2 for torch<2.3 compatibility.
140
+ - name: Downgrade NumPy
141
+ if: startsWith(matrix.torch_version, '2.2.')
142
+ run: pip install "numpy<2"
143
+
144
- name: Show installed packages
145
run: pip list
146
@@ -239,6 +244,11 @@ jobs:
239
244
240
245
241
246
247
248
249
250
251
242
252
243
253
254
0 commit comments