We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18619dd commit b336de4Copy full SHA for b336de4
1 file changed
.github/workflows/wheels.yml
@@ -89,12 +89,9 @@ jobs:
89
python -m pip install cibuildwheel
90
91
- name: Build wheels
92
+ shell: bash
93
run: |
- if [[ "$RUNNER_OS" == "Windows" ]]; then
94
- set PIP_CONSTRAINT=$GITHUB_WORKSPACE/constraints.txt && python -m cibuildwheel --output-dir wheelhouse
95
- else
96
- PIP_CONSTRAINT=$GITHUB_WORKSPACE/constraints.txt python -m cibuildwheel --output-dir wheelhouse
97
- fi
+ CIBW_BEFORE_ALL="pip install numpy<=1.26.4" python -m cibuildwheel --output-dir wheelhouse
98
99
# Upload binaries to github
100
- uses: actions/upload-artifact@v4
0 commit comments