We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07ba305 commit 4c7532eCopy full SHA for 4c7532e
Mac/BuildScript/build-installer.py
@@ -1089,10 +1089,10 @@ def buildPythonDocs():
1089
docdir = os.path.join(rootDir, 'pydocs')
1090
curDir = os.getcwd()
1091
os.chdir(buildDir)
1092
- # The Doc build changed for 3.4 (technically, for 3.4.1) and for 2.7.9
1093
runCommand('make clean')
1094
- # Assume sphinx-build is on our PATH, checked in checkEnvironment
1095
- runCommand('make html')
+ # Create virtual environment for docs builds with blurb and sphinx
+ runCommand('make venv')
+ runCommand('make html PYTHON=venv/bin/python')
1096
os.chdir(curDir)
1097
if not os.path.exists(docdir):
1098
os.mkdir(docdir)
0 commit comments