-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Recommend uv for local development
#14148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Thanks! What would the expectations be on updating A |
uv.lock would generally be updated whenever the dependencies change. dependabot supports updating the lockfile when it proposes updates. It's support is relatively new, so there are a few open issues on the dependabot repo for UV. I've been using it for a while without issues though. Renovate has better support- it can also just refresh the lockfile without updating direct dependencies (which amounts to updating the project's transient dependencies). It's supported UV for a while now and is rock solid. see https://docs.astral.sh/uv/guides/integration/dependency-bots/ |
|
Cheers @danieleades Should we add the YAML from https://docs.astral.sh/uv/guides/integration/dependency-bots/#dependabot to this PR? I'd prefer not to adopt a new dependency bot if possible, dependabot is built-in to the platform and works decently enough. A |
uv for local development
AA-Turner
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for seeing this through @danieleades
A
this PR is a redux of #12817
now that
pyproject.tomlhas standard support for dependency groups, it can be used with eitherpiporuvat the discretion of individual contributors.This PR makes two changes:
note that there is more we can do around using the native UV interface in CI jobs rather than UV's pip-compatible layer, but i suggest saving this for future PRs