You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Fix macos13 wheel names # For some reason, they come out as macos14 instead of macos13
53
-
if: ${{ matrix.os == 'macOS-13'}}
54
-
run: |
55
-
for file in ./wheelhouse/*.whl; do
56
-
new_name=$(echo "$file" | sed 's/macosx_14_0/macosx_13_0/')
57
-
mv "$file" "$new_name"
58
-
done
59
52
- name: Fix linux wheel names # This is a bit dishonest, since the wheels are not properly repaired to be manylinux compatible. This is a (hopefully) temporary hack to get our wheels onto pypi.
0 commit comments