File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -42,14 +42,20 @@ jobs:
4242
4343 if [ "${{ matrix.numpy-version }}" == "dev" ]; then
4444 python -m pip install numpy --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
45- python -m pip install dask[array] jax[cpu] sparse ndonnx
45+ python -m pip install dask[array] jax[cpu]
46+ if ["${{ matrix.python-version }}" != "3.14]; then
47+ python -m pip install sparse ndonnx
48+ fi
4649 elif [ "${{ matrix.numpy-version }}" == "1.22" ]; then
4750 python -m pip install 'numpy==1.22.*'
4851 elif [ "${{ matrix.numpy-version }}" == "1.26" ]; then
4952 python -m pip install 'numpy==1.26.*'
5053 else
5154 python -m pip install numpy
52- python -m pip install dask[array] jax[cpu] sparse ndonnx
55+ python -m pip install dask[array] jax[cpu]
56+ if ["${{ matrix.python-version }}" != "3.14]; then
57+ python -m pip install sparse ndonnx
58+ fi
5359 fi
5460
5561 - name : Dump pip environment
You can’t perform that action at this time.
0 commit comments