Skip to content

Commit 918bf33

Browse files
committed
try alternative approach to skip cpython builds for x86_64 and arm64 only
somehow the previous attempt to override archs didn't work.
1 parent 2607f28 commit 918bf33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ archs = ["x86_64", "universal2", "arm64"]
2424
[tool.cibuildwheel.linux]
2525
archs = ["native"]
2626

27-
# CPython abi3 wheels only need universal2 on macOS
27+
# CPython abi3 wheels only need universal2 on macOS, skip the single-arch builds
2828
[[tool.cibuildwheel.overrides]]
29-
select = "cp*-macosx*"
30-
macos.archs = ["universal2"]
29+
select = "cp*-macosx_{x86_64,arm64}"
30+
skip = true
3131

3232
# Run abi3audit after the default repair commands to scan for abi3 violations
3333
# https://github.com/pypa/abi3audit

0 commit comments

Comments
 (0)