Skip to content

Commit e60a442

Browse files
committed
try again
1 parent fce8aa7 commit e60a442

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/wheels.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,11 @@ jobs:
9090
9191
- name: Build wheels
9292
run: |
93-
set "PIP_CONSTRAINT=constraints.txt" && python -m cibuildwheel --output-dir wheelhouse
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; \
97+
fi
9498
9599
# Upload binaries to github
96100
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)