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

Commit f1d2caa

Browse files
authored
MAINT: rename MacOS arm64 wheels (#147)
* automatically rename MacOS arm64 thin wheel files to use version `12_0` instead of `11_0`; the verbose file move should print out the change for us if successful
1 parent 558bbc1 commit f1d2caa

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
@@ -82,6 +82,12 @@ jobs:
8282
displayName: Install wheel and test
8383
condition: ne(variables['PLAT'], 'arm64')
8484
85+
- bash: |
86+
set -xe
87+
for file in `find ./wheelhouse -type f -name '*11_0_arm64*.whl'`; do mv -v "$file" "${file/11_0_arm64/12_0_arm64}"; done
88+
displayName: "Rename MacOS arm64 wheels for version 12.0 minimum"
89+
condition: eq(variables['PLAT'], 'arm64')
90+
8591
- bash: |
8692
echo "##vso[task.prependpath]$CONDA/bin"
8793
sudo chown -R $USER $CONDA

0 commit comments

Comments
 (0)