0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 01:57:32 +01:00

Updating Sphinx and other doc dep versions (#3386)

* Updating Sphinx and other doc dep versions
* Don't bother to install docs dependencies on Drone
This commit is contained in:
David Ray 2017-02-21 08:46:21 -05:00 committed by Matt Westcott
parent 498f4f4627
commit b69bf0e9bb
2 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ pipeline:
image: python:3.5 image: python:3.5
commands: commands:
- XDG_CACHE_HOME=/drone/pip-cache pip install wheel - 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 - isort --check-only --diff --recursive wagtail
js: js:
image: node:4.2.4 image: node:4.2.4
@ -24,7 +24,7 @@ pipeline:
image: python:3.5 image: python:3.5
commands: commands:
- XDG_CACHE_HOME=/drone/pip-cache pip install wheel - 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 - python -u runtests.py
cache: cache:

View File

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