Commit b10187e1 authored by Jason R. Coombs's avatar Jason R. Coombs

Make sure bootstrap finishes before continuing, and ensure that...

Make sure bootstrap finishes before continuing, and ensure that jaraco.packaging.sphinx is run before rst.linker.
parent 74329a7f
...@@ -23,13 +23,13 @@ ...@@ -23,13 +23,13 @@
# can invoke setup.py # can invoke setup.py
import subprocess import subprocess
import sys import sys
subprocess.Popen([sys.executable, 'bootstrap.py'], cwd='..') subprocess.check_call([sys.executable, 'bootstrap.py'], cwd='..')
# -- General configuration ----------------------------------------------------- # -- General configuration -----------------------------------------------------
# Add any Sphinx extension module names here, as strings. They can be extensions # Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. # 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. # Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates'] templates_path = ['_templates']
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment