diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-03-30 22:09:19 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-03-30 22:09:19 -0400 |
commit | 11f68796ae1fb41a1318b58b89868a933e3b4c74 (patch) | |
tree | 147cfb0df2438c847e2436ceb6b54b5f2e040e88 /setup.py | |
parent | d198cbc480ceb09d5c7e35b5aaee7eeb87cab767 (diff) | |
download | external_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-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 [] |