Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork219
chore: Replace python3 -m venv and pip with uv for virtual environment management#1030
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
ezio-melotti 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.
What's the rationale for this change?
josix commentedMar 15, 2025
Hi@ezio-melotti, I'm mainly trying to speed up the time we spend preparing the environment, though it's not strictly necessary:) However, I'm also considering unifying the virtual environment in |
3a5eeb5 into3.13Uh oh!
There was an error while loading.Please reload this page.
This pull request includes updates to the
MakefileandREADME.rstto switch from using Python'svenvandpipcommands to theuvtool for virtual environment and package management.Changes to
Makefile:python3 -m venvwithuv venvfor creating virtual environments.python3 -m pip installwithuv pip installfor installing packages likesphinx,python-docs-theme,sphinx-lint, andblurb.upgrade_venvtarget to useuv pip install -q --upgradefor upgrading packages.Changes to
README.rst:uv Installationfor installinguvto preview translation results locally.