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 8b99e2d commit fcfbeb9Copy full SHA for fcfbeb9
Mac/BuildScript/build-installer.py
@@ -1115,10 +1115,10 @@ def buildPythonDocs():
1115
docdir = os.path.join(rootDir, 'pydocs')
1116
curDir = os.getcwd()
1117
os.chdir(buildDir)
1118
- # The Doc build changed for 3.4 (technically, for 3.4.1) and for 2.7.9
1119
runCommand('make clean')
1120
- # Assume sphinx-build is on our PATH, checked in checkEnvironment
1121
- runCommand('make html')
+ # Create virtual environment for docs builds with blurb and sphinx
+ runCommand('make venv')
+ runCommand('make html PYTHON=venv/bin/python')
1122
os.chdir(curDir)
1123
if not os.path.exists(docdir):
1124
os.mkdir(docdir)
0 commit comments