https://github.com/python/cpython/commit/332ac46c09cd500a16a5f03b53f038b1d9ce77ef
commit: 332ac46c09cd500a16a5f03b53f038b1d9ce77ef
branch: main
author: Ned Batchelder <[email protected]>
committer: hugovk <[email protected]>
date: 2024-03-19T21:55:20+02:00
summary:
docs: announce venv creation before installing packages (#117036)
files:
M Doc/Makefile
diff --git a/Doc/Makefile b/Doc/Makefile
index 38fd60f2ae01d1..dd068c520ad60c 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -163,6 +163,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]