https://github.com/python/cpython/commit/da36bccdac6d45bda6f83563410567c04f4b288c
commit: da36bccdac6d45bda6f83563410567c04f4b288c
branch: main
author: Filipe Laíns 🇵🇸 <[email protected]>
committer: hugovk <[email protected]>
date: 2025-01-20T21:04:05+02:00
summary:

doc: fix venv creating for the local Python using uv (#129094)

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]

Reply via email to