From ce4a76281418e4777f2a5ca6633ab9e92817f9cd Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Sun, 5 Jan 2025 10:36:48 -0700 Subject: [PATCH] trying to fix delocate errors --- build_tools/build_wheels.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_tools/build_wheels.sh b/build_tools/build_wheels.sh index c7b0b5a..eaca201 100755 --- a/build_tools/build_wheels.sh +++ b/build_tools/build_wheels.sh @@ -33,7 +33,7 @@ if [[ "$(uname)" == "Darwin" ]]; then export MACOSX_DEPLOYMENT_TARGET=13.0 # Matches Homebrew's libomp minimum # Install llvm-openmp via Conda - OPENMP_URL="https://anaconda.org/conda-forge/llvm-openmp/19.1.6/download/osx-64/llvm-openmp-19.1.6-ha54dae1_0.tar.bz2" + OPENMP_URL="https://anaconda.org/conda-forge/llvm-openmp/19.1.6/download/osx-64/llvm-openmp-19.1.6-ha54dae1_0.conda" echo "Installing llvm-openmp via Conda for x86_64..." sudo conda create -n build $OPENMP_URL PREFIX="$CONDA_HOME/envs/build"