From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 19 Mar 2024 20:03:21 +0000 (+0100) Subject: [3.11] docs: announce venv creation before installing packages (GH-117036) (#117039) X-Git-Tag: v3.11.9~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1de746fc1ecf511c6d3bc737ae3e6fa4c0576aa6;p=thirdparty%2FPython%2Fcpython.git [3.11] docs: announce venv creation before installing packages (GH-117036) (#117039) Co-authored-by: Ned Batchelder --- diff --git a/Doc/Makefile b/Doc/Makefile index d1ffade8ccbf..becda93960d5 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); \