diff options
author | Julien Palard <julien@palard.fr> | 2019-10-22 16:13:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-22 16:13:41 (GMT) |
commit | c987090c731a363c58a02d0efcb3c2d49ccf61ed (patch) | |
tree | 545c058dbebe962c7128cdae4cf65db840655470 /.azure-pipelines | |
parent | f548a3e4a28c5496755f9f8d057fc8d031b27655 (diff) | |
download | cpython-c987090c731a363c58a02d0efcb3c2d49ccf61ed.zip cpython-c987090c731a363c58a02d0efcb3c2d49ccf61ed.tar.gz cpython-c987090c731a363c58a02d0efcb3c2d49ccf61ed.tar.bz2 |
Bump Sphinx to 2.2.0. (GH-16532)
Diffstat (limited to '.azure-pipelines')
-rw-r--r-- | .azure-pipelines/docs-steps.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.azure-pipelines/docs-steps.yml b/.azure-pipelines/docs-steps.yml index 9636196..eaf4ad0 100644 --- a/.azure-pipelines/docs-steps.yml +++ b/.azure-pipelines/docs-steps.yml @@ -12,7 +12,7 @@ steps: inputs: versionSpec: '>=3.6' -- script: python -m pip install sphinx==2.0.1 blurb python-docs-theme +- script: python -m pip install sphinx==2.2.0 blurb python-docs-theme displayName: 'Install build dependencies' - ${{ if ne(parameters.latex, 'true') }}: @@ -21,7 +21,7 @@ steps: displayName: 'Build documentation' - ${{ if eq(parameters.latex, 'true') }}: - - script: sudo apt-get update && sudo apt-get install -qy --force-yes texlive-full + - script: sudo apt-get update && sudo apt-get install -qy --force-yes texlive-full displayName: 'Install LaTeX' - script: make dist PYTHON=python SPHINXBUILD='python -m sphinx' BLURB='python -m blurb' |