-
-
Notifications
You must be signed in to change notification settings - Fork 249
Switch from poetry to uv #2049
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
Switch from poetry to uv #2049
Conversation
Running Code Quality on PRs by uploading data to Trunk will soon be removed. You can still run checks on your PRs using trunk-action - see the migration guide for more information. |
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.
🚀
````sh | ||
uv venv | ||
source .venv/bin/activate | ||
uv sync --all-extras --dev | ||
`` |
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.
````sh | |
uv venv | |
source .venv/bin/activate | |
uv sync --all-extras --dev | |
`` | |
```sh | |
uv sync --all-extras | |
``` |
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.
I think for dev setup we should push ppl to create a venv and source it, for cleanliness
Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
Co-authored-by: Michael Manganiello <adamantike@users.noreply.github.com>
Description
Explain the changes or enhancements you are proposing with this pull request.
This PR migrates the project from
poetry
touv
, a new tool that bypasses the need to manage python versions and installs withpip
,pipx
,poetry
,pyenv
orvirtualenv
. Migratingpyproject.toml
was automatic withmigrate-to-uv
, and in most cases calls topoetry
were directly replaced. Setup docs have been updated to reflect the fact that python versions no longer need to be pre-installed/managed, and that uv takes care of everything.Checklist
Please check all that apply.