]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] docs: announce venv creation before installing packages (GH-117036) (#117040)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 19 Mar 2024 20:04:46 +0000 (21:04 +0100)
committerGitHub <noreply@github.com>
Tue, 19 Mar 2024 20:04:46 +0000 (20:04 +0000)
Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
Doc/Makefile

index 38fd60f2ae01d17e6aa854672938fcc6b51bf2c9..dd068c520ad60cf6204f827e592f01e2f902818e 100644 (file)
@@ -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); \