We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4401572 commit f87769cCopy full SHA for f87769c
.github/workflows/python-package.yml
@@ -174,7 +174,8 @@ jobs:
174
- name: Move and rename wheel files with pattern replacement
175
run: |
176
mkdir -p wheels/
177
- find tmp/ -type f -name '*.whl' -print0 | while IFS= read -r -d '' wheel; do
+ # exclude macos wheels for now
178
+ find tmp/ -type f -name '*.whl' ! -name '*macos*' -print0 | while IFS= read -r -d '' wheel; do
179
wheel_filename=$(basename "$wheel")
180
# Remove the gith hash, e.g. `+1234567`, for a stable download link on the multi-backend pre-release
181
cleaned_filename=$(echo "$wheel_filename" | sed -E 's/\+[0-9a-f]{7}-/-/g')
0 commit comments