From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 19 Mar 2024 20:04:46 +0000 (+0100) Subject: [3.12] docs: announce venv creation before installing packages (GH-117036) (#117040) X-Git-Tag: v3.12.3~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=afe5e46a4e40a9875c15df67fb652d89415f82c2;p=thirdparty%2FPython%2Fcpython.git [3.12] docs: announce venv creation before installing packages (GH-117036) (#117040) Co-authored-by: Ned Batchelder --- diff --git a/Doc/Makefile b/Doc/Makefile index 38fd60f2ae01..dd068c520ad6 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); \