File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ jobs:
2121 - name : Install Dependencies
2222 run : |
2323 python -m pip install --upgrade pip
24- python -m pip install pytest torch dask[array] jax[cpu]
2524 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'
2726 elif [ "${{ matrix.numpy-version }}" == "1.21" ]; then
28- python -m pip install numpy==1.21.*
27+ PIP_EXTRA=' numpy==1.21.*'
2928 else
30- python -m pip install numpy==1.26.*
29+ PIP_EXTRA=' numpy==1.26.*'
3130 fi
31+ python -m pip install pytest torch dask[array] jax[cpu] $PIP_EXTRA
3232
3333 - name : Run Tests
3434 run : |
You can’t perform that action at this time.
0 commit comments