From: Ned Deily Date: Mon, 3 Jun 2019 12:00:25 +0000 (-0400) Subject: Pin macOS installer Sphinx to v2.0.1 (GH-13774) X-Git-Tag: v3.8.0b1~28 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=29ec4228106ed5f970d1c3666614f4a51bad192c;p=thirdparty%2FPython%2Fcpython.git Pin macOS installer Sphinx to v2.0.1 (GH-13774) --- diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 60e28fee055d..2c606b9df674 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):