Skip to content

Commit f87769c

Browse files
Titus-von-Koellermatthewdouglas
authored andcommitted
omit macos wheels for now
1 parent 4401572 commit f87769c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ jobs:
174174
- name: Move and rename wheel files with pattern replacement
175175
run: |
176176
mkdir -p wheels/
177-
find tmp/ -type f -name '*.whl' -print0 | while IFS= read -r -d '' wheel; do
177+
# exclude macos wheels for now
178+
find tmp/ -type f -name '*.whl' ! -name '*macos*' -print0 | while IFS= read -r -d '' wheel; do
178179
wheel_filename=$(basename "$wheel")
179180
# Remove the gith hash, e.g. `+1234567`, for a stable download link on the multi-backend pre-release
180181
cleaned_filename=$(echo "$wheel_filename" | sed -E 's/\+[0-9a-f]{7}-/-/g')

0 commit comments

Comments
 (0)