diff --git a/pyproject.toml b/pyproject.toml index ba13f2829..a4d031858 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -205,7 +205,6 @@ trailing_comma_inline_array = true [tool.cibuildwheel] skip = [ - "*-musllinux*", "cp313-win*", # pywin32 is not available on cp313 yet "cp3{7,8,9,10,11,12}-*linux_{aarch64,ppc64le,s390x}", # Only test cp36/cp313 on qemu tested architectures "pp*", @@ -222,6 +221,10 @@ archs = ["arm64", "x86_64"] [tool.cibuildwheel.linux] before-all = "yum install -y net-tools" +[[tool.cibuildwheel.overrides]] +select = "*-musllinux*" +before-all = "apk --no-cache add coreutils procps" + [build-system] build-backend = "setuptools.build_meta" requires = ["setuptools>=43", "wheel"]