Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork214
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
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?
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
Makefile
andREADME.rst
to switch from using Python'svenv
andpip
commands to theuv
tool for virtual environment and package management.Changes to
Makefile
:python3 -m venv
withuv venv
for creating virtual environments.python3 -m pip install
withuv pip install
for installing packages likesphinx
,python-docs-theme
,sphinx-lint
, andblurb
.upgrade_venv
target to useuv pip install -q --upgrade
for upgrading packages.Changes to
README.rst
:uv Installation
for installinguv
to preview translation results locally.