Skip to content

Commit

Permalink
Skip i686 wheel builds on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed May 28, 2024
1 parent 08ffd00 commit 159f06b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
[tool.cibuildwheel]

skip = "*-win-* [cp]p3[67]-*"

[build-system]
requires = [
# setuptools >= 64 breaks editable builds:
Expand All @@ -20,6 +16,14 @@ requires = [
]
build-backend = "setuptools.build_meta"

[tool.cibuildwheel]
# nanobind does not support Py<3.8
skip = ["*-win-*", "[cp]p3[67]-*"]

[tool.cibuildwheel.linux]
# i686 does not have enough memory for LTO to complete
skip = ["[cp]p3[67]-*", "*_i686"]

[tool.cibuildwheel.macos]
archs = "x86_64 arm64"

Expand Down

0 comments on commit 159f06b

Please sign in to comment.