Skip to content

Commit 891f221

Browse files
committed
Silence workflow warnings
1 parent 41872fc commit 891f221

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ jobs:
9292
# Note: keep as old as possible as due to libomp this will be the oldest supported macOS version.
9393
- os: macos-14
9494
cibw_archs: "arm64"
95+
# Silence warning for only Python 3.8, as per https://github.com/pypa/cibuildwheel/pull/1169
96+
cibw_skip: "cp38-macosx_*:arm64"
9597

9698
steps:
9799
- uses: actions/checkout@v4
@@ -142,7 +144,7 @@ jobs:
142144
# libomp determines the minimum macOS version that we can build for
143145
run: |
144146
brew fetch --retry coreutils && brew install coreutils
145-
brew fetch --retry libomp && brew install libomp
147+
brew fetch --retry libomp && brew reinstall libomp
146148
echo MACOSX_DEPLOYMENT_TARGET=$(otool -l $(brew --prefix libomp)/lib/libomp.dylib | grep minos | awk '{print $2}') >> $GITHUB_ENV
147149
148150
- uses: pypa/cibuildwheel@v2.18

0 commit comments

Comments
 (0)