File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ jobs:
21
21
- name : Install Dependencies
22
22
run : |
23
23
python -m pip install --upgrade pip
24
- python -m pip install pytest torch dask[array] jax[cpu]
25
24
if [ "${{ matrix.numpy-version }}" == "dev" ]; then
26
- python -m pip install numpy --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
25
+ PIP_EXTRA=' numpy --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple'
27
26
elif [ "${{ matrix.numpy-version }}" == "1.21" ]; then
28
- python -m pip install numpy==1.21.*
27
+ PIP_EXTRA=' numpy==1.21.*'
29
28
else
30
- python -m pip install numpy==1.26.*
29
+ PIP_EXTRA=' numpy==1.26.*'
31
30
fi
31
+ python -m pip install pytest torch dask[array] jax[cpu] $PIP_EXTRA
32
32
33
33
- name : Run Tests
34
34
run : |
You can’t perform that action at this time.
0 commit comments