From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 20 Jan 2025 19:13:23 +0000 (+0100) Subject: [3.12] doc: fix venv creating for the local Python using uv (GH-129094) (#129097) X-Git-Tag: v3.12.9~48 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=728c6b89a66b7cb431a99fef835674ddbd765d37;p=thirdparty%2FPython%2Fcpython.git [3.12] doc: fix venv creating for the local Python using uv (GH-129094) (#129097) Co-authored-by: Filipe Laíns 🇵🇸 --- diff --git a/Doc/Makefile b/Doc/Makefile index 1a66642a4a03..b8896da4a918 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); \