From a823a0a8a6e6e1b8ea1088b610b510da4254d876 Mon Sep 17 00:00:00 2001 From: Andrew Murray <3112309+radarhere@users.noreply.github.com> Date: Mon, 30 Jun 2025 20:10:52 +1000 Subject: [PATCH] Simplified setting PLAT on macOS --- .github/workflows/wheels-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels-dependencies.sh b/.github/workflows/wheels-dependencies.sh index b7a418f44..d761d93b6 100755 --- a/.github/workflows/wheels-dependencies.sh +++ b/.github/workflows/wheels-dependencies.sh @@ -70,7 +70,7 @@ elif [[ "$(uname -s)" == "Darwin" ]]; then check_cibw_archs # Build macOS dependencies in `build/darwin` # Install them into `build/deps/darwin` - PLAT="${CIBW_ARCHS:-$AUDITWHEEL_ARCH}" + PLAT=$CIBW_ARCHS WORKDIR=$(pwd)/build/darwin BUILD_PREFIX=$(pwd)/build/deps/darwin else