From 6a7e6aa0d49629fa0fc0502f0da48cd215ddd59f Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sun, 26 Jul 2026 22:56:49 -0700 Subject: [PATCH] Support macOS bash in package smoke --- .github/workflows/pip.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index 4138d8ef..3c2303d2 100755 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -121,7 +121,10 @@ jobs: data_dir="$smoke_root/data" mkdir -p "$data_dir" - mapfile -t dependency_artifacts < <(uv run --no-project python - <<'PY' + dependency_artifacts=() + while IFS= read -r dependency_artifact; do + dependency_artifacts+=("$dependency_artifact") + done < <(uv run --no-project python - <<'PY' import tomllib locked = {