Merge "fix 'tox -e docs' by limiting sphinx versions"

This commit is contained in:
Jenkins 2015-07-02 21:38:08 +00:00 committed by Gerrit Code Review
commit e20d63d98c
2 changed files with 5 additions and 1 deletions

View File

@ -9,7 +9,7 @@ testtools
fixtures
# For doc building
sphinx>=1.1.2,!=1.2.0,!=1.3b1,<1.3
sphinx>=1.2.0,<1.3
oslosphinx
# For style checking

View File

@ -15,6 +15,10 @@ deps = -r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
commands = {envpython} {toxinidir}/tools/noproxy nosetests {posargs}
# tox uses '--pre' by default to pip install. We don't want that, and
# 'pip_pre=False' isn't available until tox version 1.9.
install_command = pip install {opts} {packages}
[testenv:py26]
deps = {[testenv]deps}
importlib