diff --git a/scripts/pip-compile.sh b/scripts/pip-compile.sh index e68d7a572..02afaf57a 100755 --- a/scripts/pip-compile.sh +++ b/scripts/pip-compile.sh @@ -6,6 +6,7 @@ set -e # First compile the common constraints of the full requirement suite # to make sure that all versions are mutually consistent across files uv pip compile \ + --no-strip-extras \ --output-file=requirements/common-constraints.txt \ requirements/requirements.in \ requirements/requirements-*.in \ @@ -13,6 +14,7 @@ uv pip compile \ # Compile the base requirements uv pip compile \ + --no-strip-extras \ --constraint=requirements/common-constraints.txt \ --output-file=requirements.txt \ requirements/requirements.in \ @@ -23,6 +25,7 @@ SUFFIXES=(dev help browser playwright) for SUFFIX in "${SUFFIXES[@]}"; do uv pip compile \ + --no-strip-extras \ --constraint=requirements/common-constraints.txt \ --output-file=requirements/requirements-${SUFFIX}.txt \ requirements/requirements-${SUFFIX}.in \