Separate doc requirements from test requirements

Doc build is now depends on oslo-config. That's ok in OpenStack
infra, but fails to build on ReadTheDocs.

Change-Id: I4d5d0174231ee14792dd8b7e5c7e1e9817e4b351
This commit is contained in:
Ilya Shakhat 2016-08-12 12:19:59 +03:00
parent f0168e1d6b
commit 4e9ea6b63e
2 changed files with 9 additions and 0 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.
oslo.config>=3.9.0 # Apache-2.0
sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD
sphinxcontrib-httpdomain # BSD
sphinx_rtd_theme

View File

@ -39,6 +39,7 @@ commands =
python tools/build_scenario_catalog.py doc/source/catalog.rst
[testenv:docs]
deps = -r{toxinidir}/doc-requirements.txt
commands = python setup.py build_sphinx
[testenv:svg2png]