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
* update workflow
* install python
* d
* d
* add vers
* add dynamic version
* update name
* stable vers
* revert name
* add in other os and python versions
* change tow orkflow dispatch
* force bash shell for windows
* revert version collection method
- name: Fix macos13 wheel names # For some reason, they come out as macos14 instead of macos13
53
66
if: ${{ matrix.os == 'macOS-13'}}
54
67
run: |
68
+
echo "=== Before renaming ==="
69
+
ls -la ./wheelhouse/
55
70
for file in ./wheelhouse/*.whl; do
71
+
echo "Original file: $file"
56
72
new_name=$(echo "$file" | sed 's/macosx_14_0/macosx_13_0/')
73
+
echo "New name: $new_name"
57
74
mv "$file" "$new_name"
58
75
done
76
+
echo "=== After renaming ==="
77
+
ls -la ./wheelhouse/
59
78
- 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