#!/usr/bin/env bash set -euo pipefail echo "Installing dependencies..." pip install --no-cache-dir numpy>=1.24.0 echo "Running tests..." pytest -q echo "Building package..." python3 -m build echo "All tests passed."