Conversation
Update cibuildwheel to 2.2.0, which will enable musllinux wheel builds. This is useful for environments like alpine linux containers.
|
I believe further changes are needed here. There's currently a workaround for # This is needed for now because cffi has no cp310 wheels
CIBW_BEFORE_ALL_LINUX: "yum -y install libffi-devel"Running this command on Alpine would obviously fail, so it must be changed. [[tool.cibuildwheel.overrides]]
select = "*-manylinux*"
before-all = "yum -y install libffi-devel"While this is actually unnecessary now, as Might also be worth upgrading I would love to see musl wheels too, let me know if I can help :) |
|
Thanks for the PR! This is already done now and musl wheels are built successfully in my latest test, will be included in the next release. |
Update cibuildwheel to 2.2.0, which will enable musllinux wheel builds. This is useful for environments like alpine linux containers.