checkpoint

This commit is contained in:
Moritz Gmeiner 2026-08-08 21:25:23 +02:00
commit a69868e950
23 changed files with 1269 additions and 0 deletions

7
competition/build.sh Executable file
View file

@ -0,0 +1,7 @@
#!/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