Skip to content

Commit e989327

Browse files
authored
Remove macOS 13 wheel name fix step
Removed the step that fixes macOS 13 wheel names.
1 parent 05c5a7a commit e989327

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

.github/workflows/build_tests.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,6 @@ jobs:
4949
CIBW_BUILD: cp310-* cp311-* cp312-* cp313-*
5050
CIBW_SKIP: "*-win32 *-manylinux_i686 pp* *-musllinux*"
5151
CIBW_REPAIR_WHEEL_COMMAND: '' # Skip repair step
52-
- 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
5952
- 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.
6053
if: ${{ matrix.os == 'ubuntu-latest' }}
6154
run: |

0 commit comments

Comments
 (0)