Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cibuildwheel config to build Apple silicon wheels #221

Merged
merged 12 commits into from
Apr 11, 2022
5 changes: 3 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ jobs:
matrix:
include:
- os: macos-latest
build: "cp*-macosx_x86_64"
name: macOS Intel
build: "cp*-macosx*"
name: macOS
- os: windows-latest
build: "cp3*-win_amd64"
name: Windows 64-bit
Expand Down Expand Up @@ -123,6 +123,7 @@ jobs:
CIBW_TEST_REQUIRES: pytest numpy
CIBW_TEST_COMMAND: pytest {project}/tests
CIBW_ARCHS_LINUX: auto aarch64
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_BUILD: ${{ matrix.build }}
CIBW_SKIP: ${{ matrix.skip }}

Expand Down