Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit 2483f99

Browse files
authored
Merge pull request #153 from tylerjereddy/treddy_universal2_wheel_rename_alternative
WIP, MAINT: rename universal2 manually
2 parents 14f94fe + 7972835 commit 2483f99

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

azure-posix.yml

+6
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@ jobs:
8888
displayName: "Rename MacOS arm64 wheels for version 12.0 minimum"
8989
condition: eq(variables['PLAT'], 'arm64')
9090
91+
- bash: |
92+
set -xe
93+
for file in `find ./wheelhouse -type f -name '*10_9_universal2.whl'`; do mv -v "$file" "${file/10_9_universal2/12_0_universal2}"; done
94+
displayName: "Rename MacOS universal2 wheels for version 12.0 minimum"
95+
condition: eq(variables['PLAT'], 'universal2')
96+
9197
- bash: |
9298
set -xe
9399
python verify_init.py ./wheelhouse

0 commit comments

Comments
 (0)