From a3ee031e5344d0b5991293100412fd2089c9c17c Mon Sep 17 00:00:00 2001 From: Adam Lugowski Date: Mon, 15 Apr 2024 15:42:44 -0700 Subject: [PATCH] Add musllinux wheels Signed-off-by: Adam Lugowski --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 94266a7bf..f4983cb44 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -202,7 +202,7 @@ spaces_indent_inline_array = 4 trailing_comma_inline_array = true [tool.cibuildwheel] -skip = ["*-musllinux*", "pp*"] +skip = ["pp*"] test-command = [ "env PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_DEBUG=1 PSUTIL_SCRIPTS_DIR={project}/scripts python {project}/psutil/tests/runner.py", "env PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_DEBUG=1 PSUTIL_SCRIPTS_DIR={project}/scripts python {project}/psutil/tests/test_memleaks.py", @@ -212,6 +212,10 @@ test-extras = "test" [tool.cibuildwheel.macos] archs = ["arm64", "x86_64"] +[[tool.cibuildwheel.overrides]] +select = "*-musllinux*" +before-all = "apk --no-cache add coreutils procps" + [build-system] build-backend = "setuptools.build_meta" requires = ["setuptools>=43", "wheel"]