←back to thread

741 points chirau | 1 comments | | HN request time: 0.243s | source
Show context
incognito124 ◴[] No.44358514[source]
uv is almost perfect. my only pet peeve is updating dependencies. sometimes I just want to go "uv, bump all my dependencies to the as latest version as possible while respecting their constraints". I still haven't found an elegant way to do this, but I have written a script that parses pyproject.toml, removes the deps, and invokes `uv add --upgrade` with them.

other than that, it's invaluable to me, with the best features being uvx and PEP 723

replies(4): >>44358537 #>>44358636 #>>44358716 #>>44374060 #
1. Cogito ◴[] No.44374060[source]
This worked pretty well for me:

    uv add --dev uv-bump
    uv-bump
Agree that something like this should be built in.

https://pypi.org/project/uv-bump/