aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-03-30 22:38:03 -0400
committerJason R. Coombs <jaraco@jaraco.com>2017-03-30 22:38:03 -0400
commitb10187e1fa7f602d7f5cc75821d14b494625aef9 (patch)
tree4df4996143266a471ca459d8ba3f792a8bcff62a
parent74329a7fa2a482309e4eb244b3920e28a76cfcbf (diff)
downloadexternal_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.py4
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']