Skip to content

Commit

Permalink
v2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpreetbedi committed Oct 15, 2024
1 parent 8b1ed2f commit 9c41cbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/generate_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ if [[ "$#" -eq 1 ]] && [[ "$1" = "upgrade" ]];
then
print_heading "Generating requirements.txt with upgrade"
UV_CUSTOM_COMPILE_COMMAND="./scripts/generate_requirements.sh upgrade" \
uv pip compile ${REPO_ROOT}/pyproject.toml --no-cache-dir --upgrade -o ${REPO_ROOT}/requirements.txt
uv pip compile ${REPO_ROOT}/pyproject.toml --no-cache --upgrade -o ${REPO_ROOT}/requirements.txt
else
print_heading "Generating requirements.txt"
uv pip compile pyproject.toml -o requirements.txt
UV_CUSTOM_COMPILE_COMMAND="./scripts/generate_requirements.sh" \
uv pip compile ${REPO_ROOT}/pyproject.toml --no-cache-dir -o ${REPO_ROOT}/requirements.txt
uv pip compile ${REPO_ROOT}/pyproject.toml --no-cache -o ${REPO_ROOT}/requirements.txt
fi

0 comments on commit 9c41cbd

Please sign in to comment.