From a8538b9de7291e700bac1c1c32ef614d4d4e1be2 Mon Sep 17 00:00:00 2001 From: Philipenko Vladimir Date: Sun, 4 Aug 2024 15:51:59 +0300 Subject: [PATCH] do not skip musllinux --- .github/workflows/test_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_build.yml b/.github/workflows/test_build.yml index 991dae89..8f0d1718 100644 --- a/.github/workflows/test_build.yml +++ b/.github/workflows/test_build.yml @@ -55,5 +55,5 @@ jobs: CIBW_ENVIRONMENT_MACOS: > PATH="/usr/local/opt/llvm/bin:$PATH" LDFLAGS="-L/usr/local/opt/llvm/lib" CPPFLAGS="-I/usr/local/opt/llvm/include" CIBW_BUILD: cp37-* cp39-* cp312-* - CIBW_SKIP: "*musllinux* *manylinux_x86_64" + CIBW_SKIP: "*manylinux_x86_64" CIBW_BEFORE_BUILD_LINUX: 'if [ $(python -c "import sys; print(sys.version_info[1])") -ge 9 ]; then python -m pip install "numpy<3.0.0" --config-settings=setup-args="-Dallow-noblas=true"; fi'