#!/usr/bin/env bash # One-time intake step: install the vendored wheels offline. # The sandbox has no network, so everything must come from wheelhouse/. set -euo pipefail cd "$(dirname "$0")" python -m pip install --no-index --find-links=wheelhouse -r requirements-vendor.txt echo "[build] vendored wheels installed" >&2