Skip to content

Commit af561fc

Browse files
authored
Merge pull request #135 from rcjackson/v020
Build Linux release wheels for x86_64 only
2 parents 1773183 + d9039d8 commit af561fc

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ build_ext = "_cmac_build.build_ext"
8282
skip = "pp*"
8383

8484
[tool.cibuildwheel.linux]
85+
# NumPy publishes no i686 wheels for any 2.x release, so a 32-bit build can
86+
# only get NumPy by compiling it from source in the manylinux2014_i686 image,
87+
# whose GCC 10.2.1 NumPy's own meson rejects. 64-bit only; no i686 wheel has
88+
# ever been published for this project anyway.
89+
archs = "x86_64"
90+
8591
# cibuildwheel defaults to the manylinux2014 image (glibc 2.17, GCC 10.2.1).
8692
# NumPy >= 2.3 publishes only manylinux_2_28 wheels, so nothing installable is
8793
# available in that image; pip falls back to the NumPy sdist and meson refuses

0 commit comments

Comments
 (0)