Skip to content

Commit f7fb29f

Browse files
committed
Only run numpy specific tests for numpy=dev
Other libraries currently break with numpy 2.0.
1 parent 04551ed commit f7fb29f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
- name: Run Tests
3434
run: |
35-
if [ "${{ matrix.numpy-version }}" == "1.21" ]; then
35+
if [ "${{ matrix.numpy-version }}" == "1.21" || "${{ matrix.numpy-version }}" == "dev" ]; then
3636
PYTEST_EXTRA=(-k "numpy and not jax")
3737
fi
3838
pytest "${PYTEST_EXTRA[@]}"

0 commit comments

Comments
 (0)