Skip to content

Commit

Permalink
Always upgrade packages
Browse files Browse the repository at this point in the history
otherwise `uv lock` will have no effect if the `uv.lock` file is
present and there are no changes to the project's dependencies in
`pyproject.toml` .
  • Loading branch information
nsoranzo committed Nov 15, 2024
1 parent e97018f commit 2e11959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/dependencies/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ uv="${uv_venv}/bin/uv"
if [ -n "$pkg" ]; then
${uv} lock --upgrade-package "$pkg"
else
${uv} lock
${uv} lock --upgrade
fi

# Update pinned requirements files.
Expand Down

0 comments on commit 2e11959

Please sign in to comment.