Skip to content

Commit

Permalink
Build x86_64 and arm64 wheels for macOS instead of universal2 wheels …
Browse files Browse the repository at this point in the history
…because the x86 wheels are still encouraged anyway.
  • Loading branch information
scoder committed Jan 10, 2024
1 parent abb3319 commit 8c2a4df
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,5 @@ archs = ["AMD64", "x86"]
[tool.cibuildwheel.macos]
# https://cibuildwheel.readthedocs.io/en/stable/faq/#what-to-provide suggests to provide
# x86_64 and one of universal2 or arm64 wheels. x86_64 is still required by older pips,
# so additional arm64 wheels would suffice. However, since the library build uses a mixed
# amd64/arm64 setup, we build universal2 wheels regardless.
archs = ["x86_64", "universal2"]
# so additional arm64 wheels suffice.
archs = ["x86_64", "arm64"]

0 comments on commit 8c2a4df

Please sign in to comment.