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`
This commit is contained in:
Stéphane Wirtel 2019-05-14 13:49:49 +02:00 committed by Miss Islington (bot)
parent 5e48e3db6f
commit 0a52d73dde

View file

@ -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"