Skip to content

Commit

Permalink
Mac installer build now needs venv for docs build (#2828) (#2830)
Browse files Browse the repository at this point in the history
(cherry picked from commit 4c7532e)
  • Loading branch information
ned-deily committed Jul 23, 2017
1 parent 5aa3bf0 commit f76d1a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Mac/BuildScript/build-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1088,10 +1088,10 @@ def buildPythonDocs():
docdir = os.path.join(rootDir, 'pydocs')
curDir = os.getcwd()
os.chdir(buildDir)
# The Doc build changed for 3.4 (technically, for 3.4.1) and for 2.7.9
runCommand('make clean')
# Assume sphinx-build is on our PATH, checked in checkEnvironment
runCommand('make html')
# Create virtual environment for docs builds with blurb and sphinx
runCommand('make venv')
runCommand('make html PYTHON=venv/bin/python')
os.chdir(curDir)
if not os.path.exists(docdir):
os.mkdir(docdir)
Expand Down

0 comments on commit f76d1a0

Please sign in to comment.