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

index d1ffade8ccbff54defd4232a8f90f918702e8bb3..becda93960d5b45f033db67f600ca76a384de943 100644 (file)
@@ -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); \