From: Filipe Laíns 🇵🇸 Date: Mon, 20 Jan 2025 19:04:05 +0000 (+0000) Subject: doc: fix venv creating for the local Python using uv (#129094) X-Git-Tag: v3.14.0a5~335 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da36bccdac6d45bda6f83563410567c04f4b288c;p=thirdparty%2FPython%2Fcpython.git doc: fix venv creating for the local Python using uv (#129094) --- 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); \