We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cae710e commit 6e7a3b6Copy full SHA for 6e7a3b6
1 file changed
.github/workflows/cibuildwheel_config.toml
@@ -23,4 +23,9 @@ MACOSX_DEPLOYMENT_TARGET = "10.14"
23
# musllinux builds on an Alpinx Linux image, need different package names
24
[[tool.cibuildwheel.overrides]]
25
select = "*-musllinux*"
26
-before-all = "apk add libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev freeglut-dev mesa-dev mesa-gl mesa-egl"
+before-all = "apk add libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev freeglut-dev mesa-dev mesa-gl mesa-egl"
27
+
28
+# skip 32-bit builds on windows, 64bit only. As of Feb 2026 32bit are failing in CI for unclear reasons.
29
+# maybe platform bugs? it looks like it's trying to link with the 64bit linker chain for some reason
30
+[tool.cibuildwheel.windows]
31
+archs = ["auto64"]
0 commit comments