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

Commit 7972835

Browse files
committed
MAINT: rename universal2 manually
* until an upstream multibuild solution is ready, "manually" rename `universal2` wheels to require MacOS version `12.0` minimum in a manner similar to what we are doing for the thin arm64 mac wheels * based on the analysis of universal2 wheel names in logs: #150 (comment) and recent nightly uploads: https://anaconda.org/scipy-wheels-nightly/scipy/files# look like we want to move from `10_9` to `12_0` universal2 file names * we should definitely check the logs to make sure this works, probably by looking at what filename gets targeted by the pip install command in the `Install wheel and test` stage for `universal2` CI runs (the `mv` command is verbose and should also print out the renamed file)
1 parent 14f94fe commit 7972835

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)