Updating Sphinx and other doc dep versions (#3386)

* Updating Sphinx and other doc dep versions
* Don't bother to install docs dependencies on Drone
pull/3395/head
David Ray 2017-02-21 08:46:21 -05:00 zatwierdzone przez Matt Westcott
rodzic 498f4f4627
commit b69bf0e9bb
2 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -8,7 +8,7 @@ pipeline:
image: python:3.5
commands:
- XDG_CACHE_HOME=/drone/pip-cache pip install wheel
- XDG_CACHE_HOME=/drone/pip-cache pip install -e .[testing,docs]
- XDG_CACHE_HOME=/drone/pip-cache pip install -e .[testing]
- isort --check-only --diff --recursive wagtail
js:
image: node:4.2.4
@ -24,7 +24,7 @@ pipeline:
image: python:3.5
commands:
- XDG_CACHE_HOME=/drone/pip-cache pip install wheel
- XDG_CACHE_HOME=/drone/pip-cache pip install -e .[testing,docs]
- XDG_CACHE_HOME=/drone/pip-cache pip install -e .[testing]
- python -u runtests.py
cache:

Wyświetl plik

@ -53,11 +53,11 @@ testing_extras = [
# Documentation dependencies
documentation_extras = [
'pyenchant==1.6.6',
'pyenchant==1.6.8',
'sphinxcontrib-spelling>=2.3.0',
'Sphinx>=1.3.1',
'sphinx-autobuild>=0.5.2',
'sphinx_rtd_theme>=0.1.8',
'Sphinx>=1.5.2',
'sphinx-autobuild>=0.6.0',
'sphinx_rtd_theme>=0.1.9',
]
setup(