Merge "Move doc related modules to doc/requirements.txt"

This commit is contained in:
Zuul 2019-08-12 13:35:56 +00:00 committed by Gerrit Code Review
commit e1df576e98
3 changed files with 16 additions and 7 deletions

8
doc/requirements.txt Normal file
View File

@ -0,0 +1,8 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
sphinx!=1.6.6,!=1.6.7,>=1.6.2,<2.0.0;python_version=='2.7' # BSD
sphinx!=1.6.6,!=1.6.7,>=1.6.2;python_version>='3.4' # BSD
reno>=2.5.0
openstackdocstheme>=1.18.1

View File

@ -5,9 +5,3 @@
hacking<0.11,>=0.10.0
oslotest>=1.5.1
stestr>=2.0.0
# These are needed for docs generation
sphinx!=1.6.6,!=1.6.7,>=1.6.2,<2.0.0;python_version=='2.7' # BSD
sphinx!=1.6.6,!=1.6.7,>=1.6.2;python_version>='3.4' # BSD
reno>=2.5.0
openstackdocstheme>=1.18.1

View File

@ -39,7 +39,14 @@ commands =
[testenv:docs]
basepython = python3
commands = sphinx-build -W -b html doc/source doc/build/html
whitelist_externals =
rm
deps =
{[testenv]deps}
-r{toxinidir}/doc/requirements.txt
commands =
rm -rf doc/build
sphinx-build -W -b html doc/source doc/build/html
[testenv:debug]
basepython = python3