From de67a39d4f054c3105a7e39bc7d9430e77108994 Mon Sep 17 00:00:00 2001 From: ZhongShengping Date: Mon, 26 Jun 2017 10:08:15 +0800 Subject: [PATCH] Switch from oslosphinx to openstackdocstheme As part of the docs migration work[0] for Pike we need to switch to use the openstackdocstheme. [0]https://review.openstack.org/#/c/472275/ Change-Id: I810f268def6cc0f831ed1795632f8c3453e9813d --- releasenotes/source/conf.py | 7 ++++--- test-requirements.txt | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index b2bf99b..3d5c0bd 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -19,6 +19,8 @@ # -- General configuration ------------------------------------------------ +import openstackdocstheme + # If your documentation needs a minimal Sphinx version, state it here. #needs_sphinx = '1.0' @@ -26,7 +28,6 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ - 'oslosphinx', 'reno.sphinxext', ] @@ -98,7 +99,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 @@ -106,7 +107,7 @@ html_theme = 'default' #html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] +html_theme_path = [openstackdocstheme.get_html_theme_path()] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". diff --git a/test-requirements.txt b/test-requirements.txt index 152ebef..31c3f5a 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,6 +1,6 @@ # This is required for the docs build jobs sphinx!=1.6.1,>=1.5.1 # BSD -oslosphinx>=4.7.0 # Apache-2.0 +openstackdocstheme>=1.5.0 # Apache-2.0 # This is required for the releasenotes build jobs # FIXME: reno is manually pinned to !=2.0.0 because of bug #1651995