https://github.com/python/cpython/commit/1de746fc1ecf511c6d3bc737ae3e6fa4c0576aa6
commit: 1de746fc1ecf511c6d3bc737ae3e6fa4c0576aa6
branch: 3.11
author: Miss Islington (bot) <[email protected]>
committer: hugovk <[email protected]>
date: 2024-03-19T20:03:21Z
summary:

[3.11] docs: announce venv creation before installing packages (GH-117036) 
(#117039)

Co-authored-by: Ned Batchelder <[email protected]>

files:
M Doc/Makefile

diff --git a/Doc/Makefile b/Doc/Makefile
index d1ffade8ccbff5..becda93960d5b4 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -177,6 +177,7 @@ venv:
                echo "venv already exists."; \
                echo "To recreate it, remove it first with \`make 
clean-venv'."; \
        else \
+               echo "Creating venv in $(VENVDIR)"; \
                $(PYTHON) -m venv $(VENVDIR); \
                $(VENVDIR)/bin/python3 -m pip install --upgrade pip; \
                $(VENVDIR)/bin/python3 -m pip install -r $(REQUIREMENTS); \

_______________________________________________
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