diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-03-30 22:38:03 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2017-03-30 22:38:03 -0400 |
commit | b10187e1fa7f602d7f5cc75821d14b494625aef9 (patch) | |
tree | 4df4996143266a471ca459d8ba3f792a8bcff62a | |
parent | 74329a7fa2a482309e4eb244b3920e28a76cfcbf (diff) | |
download | external_python_setuptools-b10187e1fa7f602d7f5cc75821d14b494625aef9.tar.gz external_python_setuptools-b10187e1fa7f602d7f5cc75821d14b494625aef9.tar.bz2 external_python_setuptools-b10187e1fa7f602d7f5cc75821d14b494625aef9.zip |
Make sure bootstrap finishes before continuing, and ensure that jaraco.packaging.sphinx is run before rst.linker.
-rw-r--r-- | docs/conf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py index 15061ecf..7f781fef 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,13 +23,13 @@ # can invoke setup.py import subprocess import sys -subprocess.Popen([sys.executable, 'bootstrap.py'], cwd='..') +subprocess.check_call([sys.executable, 'bootstrap.py'], cwd='..') # -- General configuration ----------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['rst.linker', 'sphinx.ext.autosectionlabel', 'jaraco.packaging.sphinx'] +extensions = ['jaraco.packaging.sphinx', 'rst.linker', 'sphinx.ext.autosectionlabel'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] |