You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You probably need to skip PyPy (if using PyO3, anyway), and Rust doesn't support musllinux 1.1:
297
+
You probably need to skip PyPy (if using PyO3, anyway), and Rust provides cargo for musllinux 32-bit:
298
298
299
299
```toml
300
300
[tool.cibuildwheel]
301
-
skip = ["pp*", "*musl*"]
301
+
skip = ["pp*", "*-musllinux_i686"]
302
302
```
303
303
304
-
Also see [maturin-action](https://github.com/PyO3/maturin-action) which is optimized for Rust wheels and can cross-compile.
304
+
Also see [maturin-action](https://github.com/PyO3/maturin-action) which is optimized for Rust wheels and can cross-compile (and can build 32-bit musl, for example).
0 commit comments