]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
docs: announce venv creation before installing packages (#117036)
authorNed Batchelder <ned@nedbatchelder.com>
Tue, 19 Mar 2024 19:55:20 +0000 (15:55 -0400)
committerGitHub <noreply@github.com>
Tue, 19 Mar 2024 19:55:20 +0000 (21:55 +0200)
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); \