From 7edcdea6a224e0531b8971766877afdb71235e00 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Schmidt Date: Mon, 16 Oct 2023 10:28:52 -0400 Subject: [PATCH] Use subdir envvar for micromamba (#317) * Use subdir. * revert temp change * test wheel before release * revert wheel testing changes --------- Co-authored-by: Jan Tilly --- build_tools/prepare_macos_wheel.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build_tools/prepare_macos_wheel.sh b/build_tools/prepare_macos_wheel.sh index caa8e1dc..3a7949b4 100644 --- a/build_tools/prepare_macos_wheel.sh +++ b/build_tools/prepare_macos_wheel.sh @@ -3,9 +3,9 @@ set -exuo pipefail if [[ "${ARCHFLAGS:-}" == *arm64 ]]; then - CONDA_CHANNEL="conda-forge/osx-arm64" + export CONDA_SUBDIR="osx-arm64" else - CONDA_CHANNEL="conda-forge/osx-64" + export CONDA_SUBDIR="osx-64" fi -/Users/runner/micromamba-bin/micromamba create -y -p $CONDA/envs/build -c $CONDA_CHANNEL jemalloc-local xsimd llvm-openmp +/Users/runner/micromamba-bin/micromamba create -y -p $CONDA/envs/build -c conda-forge jemalloc-local xsimd llvm-openmp