Skip to content

Commit 6471abe

Browse files
mykauldkropachev
authored andcommitted
CI: skip 32-bit Windows wheel builds
The *i686 skip pattern in cibuildwheel config matches only Linux 32-bit identifiers (e.g. cp310-manylinux_i686), not Windows 32-bit (which uses win32, e.g. cp310-win32). Add *win32 to skip 32-bit Windows builds, which fail because: - c_shard_info.c uses __uint128_t (GCC extension, unsupported by MSVC) - cryptography test dependency fails to build for i686-pc-windows-msvc due to missing OpenSSL
1 parent e48f3c6 commit 6471abe

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ skip = [
142142
"cp3*t-*",
143143
"pp3*t-*",
144144
"*i686",
145+
"*win32",
145146
"*musllinux*",
146147
]
147148
build = ["cp3*", "pp3*"]

0 commit comments

Comments
 (0)