Skip to content

Commit 8015636

Browse files
Drop ndonnx for 3.9
1 parent fdd39cf commit 8015636

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Diff for: .github/workflows/tests.yml

+10
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,22 @@ jobs:
2828
else
2929
PIP_EXTRA='numpy==1.26.*'
3030
fi
31+
32+
if [ "${{ matrix.python-version }}" == "3.9" ]; then
33+
sed -i '/ndonnx/d' requirements-dev.txt
34+
fi
3135
python -m pip install -r requirements-dev.txt $PIP_EXTRA
3236
3337
- name: Run Tests
3438
run: |
39+
3540
if [[ "${{ matrix.numpy-version }}" == "1.21" || "${{ matrix.numpy-version }}" == "dev" ]]; then
3641
PYTEST_EXTRA=(-k "numpy and not jax and not torch and not dask and not sparse")
42+
else
43+
PYTEST_EXTRA=()
44+
fi
45+
if [[ "${{ matrix.python-version }}" == "3.9" ]]; then
46+
PYTEST_EXTRA+=(-k "not ndonnx")
3747
fi
3848
pytest -v "${PYTEST_EXTRA[@]}"
3949

0 commit comments

Comments
 (0)