https://github.com/python/cpython/commit/728c6b89a66b7cb431a99fef835674ddbd765d37 commit: 728c6b89a66b7cb431a99fef835674ddbd765d37 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-01-20T21:13:23+02:00 summary:
[3.12] doc: fix venv creating for the local Python using uv (GH-129094) (#129097) Co-authored-by: Filipe Laíns 🇵🇸 <[email protected]> files: M Doc/Makefile diff --git a/Doc/Makefile b/Doc/Makefile index 1a66642a4a03ed..b8896da4a91869 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -172,7 +172,7 @@ venv: else \ echo "Creating venv in $(VENVDIR)"; \ if $(UV) --version >/dev/null 2>&1; then \ - $(UV) venv $(VENVDIR); \ + $(UV) venv --python=$(PYTHON) $(VENVDIR); \ VIRTUAL_ENV=$(VENVDIR) $(UV) pip install -r $(REQUIREMENTS); \ else \ $(PYTHON) -m venv $(VENVDIR); \ _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
