From 1de746fc1ecf511c6d3bc737ae3e6fa4c0576aa6 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 19 Mar 2024 21:03:21 +0100 Subject: [PATCH] [3.11] docs: announce venv creation before installing packages (GH-117036) (#117039) Co-authored-by: Ned Batchelder --- Doc/Makefile | 1 + 1 file changed, 1 insertion(+) 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); \