mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
refactor: Simplify pip-compile script by removing annotation-style flag
This commit is contained in:
parent
5764d44faf
commit
3c361be621
1 changed files with 1 additions and 4 deletions
|
@ -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 \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue