We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36b86da commit bed0ad4Copy full SHA for bed0ad4
.github/workflows/build_pip.yaml
@@ -17,8 +17,8 @@ jobs:
17
18
strategy:
19
matrix:
20
- python: ['3.10', '3.11', '3.12']
21
- numpy_ver: ['1.26.4', '2.2.5']
+ python: ['3.9', '3.10', '3.11', '3.12']
+ numpy_ver: ["numpy'<2'", "numpy'>=2'"]
22
23
steps:
24
- name: Install jq
@@ -49,7 +49,7 @@ jobs:
49
- name: Build conda package
50
run: |
51
pip install --no-cache-dir scikit-build cmake ninja cython
52
- pip install --no-cache-dir numpy==${{ matrix.numpy_ver }}
+ pip install --no-cache-dir ${{ matrix.numpy_ver }}
53
echo "CONDA_PREFFIX is '${CONDA_PREFIX}'"
54
export MKLROOT=${CONDA_PREFIX}
55
pip install . --no-build-isolation --no-deps --verbose
0 commit comments