File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 inputs :
1313 versionSpec : ' >=3.6'
1414
15- - script : python -m pip install sphinx==2.0.1 blurb python-docs-theme
15+ - script : python -m pip install sphinx==2.2.0 blurb python-docs-theme
1616 displayName : ' Install build dependencies'
1717
1818- ${{ if ne(parameters.latex, 'true') }} :
2121 displayName : ' Build documentation'
2222
2323- ${{ if eq(parameters.latex, 'true') }} :
24- - script : sudo apt-get update && sudo apt-get install -qy --force-yes texlive-full
24+ - script : sudo apt-get update && sudo apt-get install -qy --force-yes texlive-full
2525 displayName : ' Install LaTeX'
2626
2727 - script : make dist PYTHON=python SPHINXBUILD='python -m sphinx' BLURB='python -m blurb'
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ matrix:
5555 # Sphinx is pinned so that new versions that introduce new warnings won't suddenly cause build failures.
5656 # (Updating the version is fine as long as no warnings are raised by doing so.)
5757 # The theme used by the docs is stored separately, so we need to install that as well.
58- - python -m pip install sphinx==2.0.1 blurb python-docs-theme
58+ - python -m pip install sphinx==2.2.0 blurb python-docs-theme
5959 script :
6060 - make check suspicious html SPHINXOPTS="-q -W -j4"
6161 - name : " Documentation tests"
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ clean:
143143venv :
144144 $(PYTHON ) -m venv $(VENVDIR )
145145 $(VENVDIR ) /bin/python3 -m pip install -U pip setuptools
146- $(VENVDIR ) /bin/python3 -m pip install -U Sphinx==2.0.1 blurb python-docs-theme
146+ $(VENVDIR ) /bin/python3 -m pip install -U Sphinx==2.2.0 blurb python-docs-theme
147147 @echo " The venv has been created in the $( VENVDIR) directory"
148148
149149dist :
Original file line number Diff line number Diff line change 11# Requirements for docs build on netlify
22# Pin sphinx to version specified in .travis.yml
3- sphinx == 2.0.1
3+ sphinx == 2.2.0
44blurb
55python-docs-theme
Original file line number Diff line number Diff line change @@ -1068,7 +1068,7 @@ def buildPythonDocs():
10681068 runCommand ('make clean' )
10691069 # Create virtual environment for docs builds with blurb and sphinx
10701070 runCommand ('make venv' )
1071- runCommand ('venv/bin/python3 -m pip install -U Sphinx==2.0.1 ' )
1071+ runCommand ('venv/bin/python3 -m pip install -U Sphinx==2.2.0 ' )
10721072 runCommand ('make html PYTHON=venv/bin/python' )
10731073 os .chdir (curDir )
10741074 if not os .path .exists (docdir ):
You can’t perform that action at this time.
0 commit comments