diff options
author | Victor Stinner <vstinner@python.org> | 2020-09-18 14:23:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-18 14:23:18 (GMT) |
commit | 8394500cca56490cc347604d39ca40abcdce46c3 (patch) | |
tree | 3768768a78bb905a1af867c18f89954f98ae2346 /Doc/Makefile | |
parent | 6595cb0af4c51c0381c233b97884fe916a4ddd35 (diff) | |
download | cpython-8394500cca56490cc347604d39ca40abcdce46c3.zip cpython-8394500cca56490cc347604d39ca40abcdce46c3.tar.gz cpython-8394500cca56490cc347604d39ca40abcdce46c3.tar.bz2 |
bpo-35293: Travis CI uses "make venv" for the doc (GH-22307)
Doc/requirements.txt becomes the reference for packages and package
versions needed to build the Python documentation.
* Doc/Makefile now uses Doc/requirements.txt
* .travis.yml now uses "make env" of Doc/Makefile
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index c11a7ca..f653d70 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -143,7 +143,7 @@ clean: venv: $(PYTHON) -m venv $(VENVDIR) $(VENVDIR)/bin/python3 -m pip install -U pip setuptools - $(VENVDIR)/bin/python3 -m pip install -U Sphinx==3.2.1 blurb python-docs-theme + $(VENVDIR)/bin/python3 -m pip install -r requirements.txt @echo "The venv has been created in the $(VENVDIR) directory" dist: |