mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
feat: Add --no-strip-extras flag to uv pip compile commands
This commit is contained in:
parent
c67cb5c604
commit
1357b85a3d
1 changed files with 3 additions and 0 deletions
|
@ -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 \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue