From 297a7658c06dfb9c6c0dd06e6c7e81f5a56b0dbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sun, 7 Apr 2024 11:54:58 +0100 Subject: [PATCH] Don't build for musllinux --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bd40a3fa..d6ba31f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -116,7 +116,7 @@ convention = "google" environment = {PATH="$HOME/.cargo/bin:$PATH"} before-build = "pip install -U setuptools-rust && rustup show" # breezyshim embeds python3, which doesn't work with pypy -skip = "pp*" +skip = "pp* *musllinux*" [tool.cibuildwheel.linux] before-build = "if command -v yum; then yum -y install openssl-devel libtdb-devel clang libgpg-error-devel; fi && if command -v apk; then apk add openssl-dev pkgconfig tdb-dev llvm clang gpgme-dev; fi && pip install -U setuptools-rust && curl https://sh.rustup.rs -sSf | sh -s -- --profile=minimal -y && rustup show"