summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStéphane Wirtel <stephane@wirtel.be>2019-05-14 11:49:49 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-14 11:49:49 (GMT)
commit0a52d73ddeeac23f73c919d636e7008ddde5c72b (patch)
tree0e8a0c5a9fa186fd1bb7f85bc322205a03bf0881
parent5e48e3db6f5a937023e99d89cef8884d22bd8533 (diff)
downloadcpython-0a52d73ddeeac23f73c919d636e7008ddde5c72b.zip
cpython-0a52d73ddeeac23f73c919d636e7008ddde5c72b.tar.gz
cpython-0a52d73ddeeac23f73c919d636e7008ddde5c72b.tar.bz2
Doc: Update pip and setuptools when creating the virtual environment (GH-13307)
Add a new pip install before `sphinx` etc.. because we should use the last version of `pip` and `setuptools`
-rw-r--r--Doc/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index cf1bb88..6f86728 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -132,6 +132,7 @@ clean:
venv:
$(PYTHON) -m venv $(VENVDIR)
+ $(VENVDIR)/bin/python3 -m pip install -U pip setuptools
$(VENVDIR)/bin/python3 -m pip install -U Sphinx blurb python-docs-theme
@echo "The venv has been created in the $(VENVDIR) directory"