summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2018-08-21 08:57:12 -0500
committerClark Boylan <clark.boylan@gmail.com>2018-08-28 15:13:00 -0700
commit8236cdbf37a27a4bac9f097c25d37db87692596f (patch)
tree6eb7e42d2347d7c6e2d1af80cc0a334e3ad873a0
parentc9282ae021dbaa4e50413205b990eccc9b6bcb61 (diff)
downloadgit-review-8236cdbf37a27a4bac9f097c25d37db87692596f.tar.gz
Use doc/requirements and openstackdocstheme
oslosphinx is the old hotness. openstackdocstheme is the new hotness. Also, we can use doc/requirements.txt for docs requirements. Change-Id: I9cbc670c8fb065d240251f061919479c87193ff5
-rw-r--r--doc/requirements.txt2
-rw-r--r--doc/source/conf.py4
-rw-r--r--test-requirements.txt2
-rw-r--r--tox.ini3
4 files changed, 7 insertions, 4 deletions
diff --git a/doc/requirements.txt b/doc/requirements.txt
new file mode 100644
index 0000000..c69cea6
--- /dev/null
+++ b/doc/requirements.txt
@@ -0,0 +1,2 @@
+sphinx!=1.6.6,!=1.6.7 # BSD
+openstackdocstheme>=1.11.0 # Apache-2.0
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 42aa408..5ff4600 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -30,7 +30,7 @@ import os
# ones.
extensions = [
'sphinx.ext.autodoc',
- 'oslosphinx',
+ 'openstackdocstheme',
]
# Add any paths that contain templates here, relative to this directory.
@@ -92,7 +92,7 @@ pygments_style = 'sphinx'
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
-html_theme = 'default'
+html_theme = 'openstackdocs'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
diff --git a/test-requirements.txt b/test-requirements.txt
index 41b80c1..6bc3c81 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -3,5 +3,3 @@ mock
fixtures>=0.3.14
testrepository>=0.0.18
testtools>=0.9.34
-oslosphinx
-sphinx>=1.1.2,!=1.2.0,<1.3
diff --git a/tox.ini b/tox.ini
index 108f77c..05cbda1 100644
--- a/tox.ini
+++ b/tox.ini
@@ -22,6 +22,9 @@ commands = flake8
commands = python setup.py sdist {posargs}
[testenv:docs]
+deps =
+ -r{toxinidir}/requirements.txt
+ -r{toxinidir}/doc/requirements.txt
commands =
sphinx-build -W -d doc/build/doctrees -b html doc/source/ doc/build/html