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 d278527 commit 2b85cefCopy full SHA for 2b85cef
.github/workflows/tests.yml
@@ -28,9 +28,10 @@ jobs:
28
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then
29
python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy;
30
else
31
- python -m pip install 'numpy>=1.26,<2.0';
+ python -m pip install 'numpy=='${{ matrix.numpy-version }}
32
fi
33
- python -m pip install -r requirements-dev.txt
+ python -m pip install pytest hypothesis
34
+ python -c'import numpy as np; print(f"{np.__version__ = }")'
35
- name: Run Tests
36
run: |
37
pytest
0 commit comments