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 5aa3bf0 commit f76d1a0Copy full SHA for f76d1a0
Mac/BuildScript/build-installer.py
@@ -1088,10 +1088,10 @@ def buildPythonDocs():
1088
docdir = os.path.join(rootDir, 'pydocs')
1089
curDir = os.getcwd()
1090
os.chdir(buildDir)
1091
- # The Doc build changed for 3.4 (technically, for 3.4.1) and for 2.7.9
1092
runCommand('make clean')
1093
- # Assume sphinx-build is on our PATH, checked in checkEnvironment
1094
- runCommand('make html')
+ # Create virtual environment for docs builds with blurb and sphinx
+ runCommand('make venv')
+ runCommand('make html PYTHON=venv/bin/python')
1095
os.chdir(curDir)
1096
if not os.path.exists(docdir):
1097
os.mkdir(docdir)
0 commit comments