Skip to content

Commit 1ef5b07

Browse files
committed
CI: skip install sparse and ndonnx on py 3.14
1 parent 609d0a0 commit 1ef5b07

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)