diff options
author | Caleb Hattingh <caleb.hattingh@gmail.com> | 2017-11-26 21:18:30 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2017-11-26 21:18:30 (GMT) |
commit | d8d6b9122134f040cd5a4f15f40f6c9e3386db4d (patch) | |
tree | 66c4c733fcc7873b0d931384403c638142571f8c /.travis.yml | |
parent | a6fba9b827e395fc9583c07bc2d15cd11f684439 (diff) | |
download | cpython-d8d6b9122134f040cd5a4f15f40f6c9e3386db4d.zip cpython-d8d6b9122134f040cd5a4f15f40f6c9e3386db4d.tar.gz cpython-d8d6b9122134f040cd5a4f15f40f6c9e3386db4d.tar.bz2 |
bpo-30487: automatically create a venv and install Sphinx when running make (GH-4346)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c207bd7..4e8be5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,7 @@ matrix: # (Updating the version is fine as long as no warnings are raised by doing so.) - python -m pip install sphinx~=1.6.1 blurb script: - - make check suspicious html SPHINXOPTS="-q -W -j4" + - make check suspicious html SPHINXBUILD="sphinx-build" SPHINXOPTS="-q -W -j4" - os: linux language: c compiler: gcc |