aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-03-30 22:09:19 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-03-30 22:09:19 -0400
commit11f68796ae1fb41a1318b58b89868a933e3b4c74 (patch)
tree147cfb0df2438c847e2436ceb6b54b5f2e040e88 /setup.py
parentd198cbc480ceb09d5c7e35b5aaee7eeb87cab767 (diff)
downloadexternal_python_setuptools-11f68796ae1fb41a1318b58b89868a933e3b4c74.tar.gz
external_python_setuptools-11f68796ae1fb41a1318b58b89868a933e3b4c74.tar.bz2
external_python_setuptools-11f68796ae1fb41a1318b58b89868a933e3b4c74.zip
Ensure sphinx is present for building docsv20.6.6
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index c559befa..1aa31687 100755
--- a/setup.py
+++ b/setup.py
@@ -61,7 +61,7 @@ if (sys.platform == 'win32' or (os.name == 'java' and os._name == 'nt')) \
needs_pytest = set(['ptr', 'pytest', 'test']).intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
-needs_sphinx = set(['build_sphinx', 'upload_docs']).intersection(sys.argv)
+needs_sphinx = set(['build_sphinx', 'upload_docs', 'release']).intersection(sys.argv)
sphinx = ['sphinx', 'rst.linker>=1.5'] if needs_sphinx else []
needs_wheel = set(['release', 'bdist_wheel']).intersection(sys.argv)
wheel = ['wheel'] if needs_wheel else []