[3.13] doc: fix venv creating for the local Python using uv (GH-129094) (#129096)

Co-authored-by: Filipe Laíns 🇵🇸 <lains@riseup.net>
This commit is contained in:
Miss Islington (bot) 2025-01-20 20:13:12 +01:00 committed by GitHub
parent 03b2ecf41c
commit 2077082463
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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); \