From 1357b85a3dc0b1372a27d720babbb3f3b044b7e0 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 5 Mar 2025 14:37:27 -0800 Subject: [PATCH] feat: Add --no-strip-extras flag to uv pip compile commands --- scripts/pip-compile.sh | 3 +++ 1 file changed, 3 insertions(+) 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 \