general-bots-training/competition/build.sh
2026-08-08 21:25:35 +02:00

7 lines
321 B
Shell
Executable file

#!/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