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