Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ build_ext = "_cmac_build.build_ext"
skip = "pp*"

[tool.cibuildwheel.linux]
# NumPy publishes no i686 wheels for any 2.x release, so a 32-bit build can
# only get NumPy by compiling it from source in the manylinux2014_i686 image,
# whose GCC 10.2.1 NumPy's own meson rejects. 64-bit only; no i686 wheel has
# ever been published for this project anyway.
archs = "x86_64"

# cibuildwheel defaults to the manylinux2014 image (glibc 2.17, GCC 10.2.1).
# NumPy >= 2.3 publishes only manylinux_2_28 wheels, so nothing installable is
# available in that image; pip falls back to the NumPy sdist and meson refuses
Expand Down
Loading