Skip to content

Commit bed0ad4

Browse files
committed
update build_pip workflow
1 parent 36b86da commit bed0ad4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_pip.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
python: ['3.10', '3.11', '3.12']
21-
numpy_ver: ['1.26.4', '2.2.5']
20+
python: ['3.9', '3.10', '3.11', '3.12']
21+
numpy_ver: ["numpy'<2'", "numpy'>=2'"]
2222

2323
steps:
2424
- name: Install jq
@@ -49,7 +49,7 @@ jobs:
4949
- name: Build conda package
5050
run: |
5151
pip install --no-cache-dir scikit-build cmake ninja cython
52-
pip install --no-cache-dir numpy==${{ matrix.numpy_ver }}
52+
pip install --no-cache-dir ${{ matrix.numpy_ver }}
5353
echo "CONDA_PREFFIX is '${CONDA_PREFIX}'"
5454
export MKLROOT=${CONDA_PREFIX}
5555
pip install . --no-build-isolation --no-deps --verbose

0 commit comments

Comments
 (0)