From 3c361be62185a8deccb1f56b42587cc481a09380 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 5 Mar 2025 14:49:40 -0800 Subject: [PATCH] refactor: Simplify pip-compile script by removing annotation-style flag --- scripts/pip-compile.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/pip-compile.sh b/scripts/pip-compile.sh index ff57f291b..ec62c26dc 100755 --- a/scripts/pip-compile.sh +++ b/scripts/pip-compile.sh @@ -4,14 +4,13 @@ set -e # Add verbosity flag to see more details about dependency resolution -VERBOSITY="-vv" # Use -v for less detail, -vvv for even more detail +VERBOSITY="-v" # Use -v for less detail, -vvv for even more detail # First compile the common constraints of the full requirement suite # to make sure that all versions are mutually consistent across files uv pip compile \ $VERBOSITY \ --no-strip-extras \ - --annotation-style=line \ --output-file=requirements/common-constraints.txt \ requirements/requirements.in \ requirements/requirements-*.in \ @@ -21,7 +20,6 @@ uv pip compile \ uv pip compile \ $VERBOSITY \ --no-strip-extras \ - --annotation-style=line \ --constraint=requirements/common-constraints.txt \ --output-file=requirements.txt \ requirements/requirements.in \ @@ -34,7 +32,6 @@ for SUFFIX in "${SUFFIXES[@]}"; do uv pip compile \ $VERBOSITY \ --no-strip-extras \ - --annotation-style=line \ --constraint=requirements/common-constraints.txt \ --output-file=requirements/requirements-${SUFFIX}.txt \ requirements/requirements-${SUFFIX}.in \