From 39c8019105313f707a890e4b8ebdef5ba72d04e2 Mon Sep 17 00:00:00 2001 From: Philipenko Vladimir Date: Wed, 31 Jul 2024 16:56:29 +0300 Subject: [PATCH] Fix? --- .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 89d4ab7..7ad705f 100644 --- a/.github/workflows/test_build.yml +++ b/.github/workflows/test_build.yml @@ -53,7 +53,7 @@ jobs: python -m cibuildwheel --output-dir wheelhouse env: CIBW_ENVIRONMENT_MACOS: > - PATH="/usr/local/opt/llvm/bin:$PATH" LDFLAGS="-L/usr/local/opt/llvm/lib" CPPFLAGS="-I/usr/local/opt/llvm/include" + PATH="/opt/homebrew/opt/llvm/bin:$PATH" LDFLAGS="-L/opt/homebrew/opt/llvm/lib" CPPFLAGS="-I/opt/homebrew/opt/llvm/include" CIBW_BUILD: cp39-* cp312-* CIBW_SKIP: "*musllinux* *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<2.0.0" --config-settings=setup-args="-Dallow-noblas=true"; fi'