diff options
author | Jon Wayne Parrott <jonwayne@google.com> | 2018-03-01 21:02:50 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2018-03-01 21:02:50 (GMT) |
commit | bf63e8d55fd2853df3bb99d66de7f428107aadb3 (patch) | |
tree | aabf6ec691ee99f0cb56fff1a3ac6ee5bb03ea98 /.travis.yml | |
parent | 5da8cfb838fa1bf3529c085c6dce1adf3d1eaf62 (diff) | |
download | cpython-bf63e8d55fd2853df3bb99d66de7f428107aadb3.zip cpython-bf63e8d55fd2853df3bb99d66de7f428107aadb3.tar.gz cpython-bf63e8d55fd2853df3bb99d66de7f428107aadb3.tar.bz2 |
bpo-30607: Use external python-doc-theme (GH-2017)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 292b9c6..af3cdf5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,7 +49,8 @@ matrix: - cd Doc # Sphinx is pinned so that new versions that introduce new warnings won't suddenly cause build failures. # (Updating the version is fine as long as no warnings are raised by doing so.) - - python -m pip install sphinx~=1.6.1 blurb + # The theme used by the docs is stored seperately, so we need to install that as well. + - python -m pip install sphinx~=1.6.1 blurb python-docs-theme script: - make check suspicious html SPHINXOPTS="-q -W -j4" - os: osx |