Skip to content

Commit c987090

Browse files
authored
Bump Sphinx to 2.2.0. (GH-16532)
1 parent f548a3e commit c987090

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.azure-pipelines/docs-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ steps:
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') }}:
@@ -21,7 +21,7 @@ steps:
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'

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

Doc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ clean:
143143
venv:
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

149149
dist:

Doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
44
blurb
55
python-docs-theme

Mac/BuildScript/build-installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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):

0 commit comments

Comments
 (0)