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