diff options
author | Ned Deily <nad@python.org> | 2019-06-03 12:00:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-03 12:00:25 (GMT) |
commit | 29ec4228106ed5f970d1c3666614f4a51bad192c (patch) | |
tree | 4d6f293b45ca7d418fecfdc15a4d4984052293ec /Mac | |
parent | 0288dd6a5192074fcd5aa0db5d3513c3880209ca (diff) | |
download | cpython-29ec4228106ed5f970d1c3666614f4a51bad192c.zip cpython-29ec4228106ed5f970d1c3666614f4a51bad192c.tar.gz cpython-29ec4228106ed5f970d1c3666614f4a51bad192c.tar.bz2 |
Pin macOS installer Sphinx to v2.0.1 (GH-13774)
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 60e28fe..2c606b9 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -1058,6 +1058,7 @@ def buildPythonDocs(): runCommand('make clean') # Create virtual environment for docs builds with blurb and sphinx runCommand('make venv') + runCommand('venv/bin/python3 -m pip install -U Sphinx==2.0.1') runCommand('make html PYTHON=venv/bin/python') os.chdir(curDir) if not os.path.exists(docdir): |