add pip as a req

This commit is contained in:
Paul Gauthier 2024-12-09 06:51:06 -08:00
parent a8dde17155
commit f009e8fb14
8 changed files with 166 additions and 154 deletions

View file

@ -5,6 +5,7 @@ set -e
# First compile the base requirements
pip-compile \
--allow-unsafe \
requirements/requirements.in \
--output-file=requirements.txt \
$1
@ -15,6 +16,7 @@ CONSTRAINTS="--constraint=requirements.txt"
for SUFFIX in "${SUFFIXES[@]}"; do
pip-compile \
--allow-unsafe \
requirements/requirements-${SUFFIX}.in \
--output-file=requirements/requirements-${SUFFIX}.txt \
${CONSTRAINTS} \