Skip to content

Commit

Permalink
ci: Build Apple Silicon wheels natively
Browse files Browse the repository at this point in the history
  • Loading branch information
QuLogic committed Mar 19, 2024
1 parent 0fd1b9c commit acd1b06
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,6 @@ jobs:
CIBW_SKIP: "*-musllinux_aarch64"
CIBW_TEST_COMMAND: >-
python {package}/ci/check_version_number.py
# Apple Silicon machines are not available for testing, so silence the
# warning from cibuildwheel. Remove the skip when they're available.
CIBW_TEST_SKIP: "*-macosx_arm64"
MACOSX_DEPLOYMENT_TARGET: "10.12"
MPL_DISABLE_FH4: "yes"
strategy:
Expand All @@ -131,7 +128,9 @@ jobs:
- os: windows-latest
cibw_archs: "auto64"
- os: macos-11
cibw_archs: "x86_64 arm64"
cibw_archs: "x86_64"
- os: macos-14
cibw_archs: "arm64"

steps:
- name: Set up QEMU
Expand Down

0 comments on commit acd1b06

Please sign in to comment.