From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 20 Jan 2025 19:13:12 +0000 (+0100) Subject: [3.13] doc: fix venv creating for the local Python using uv (GH-129094) (#129096) X-Git-Tag: v3.13.2~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=207708246327c8b179529020007cedd94b19cd86;p=thirdparty%2FPython%2Fcpython.git [3.13] doc: fix venv creating for the local Python using uv (GH-129094) (#129096) 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); \