diff options
author | Andreas Jaeger <aj@suse.com> | 2020-05-18 22:41:31 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@suse.com> | 2020-05-20 21:52:50 +0200 |
commit | c2eb453deb9aae28a9892f63a30d8d34763a4c97 (patch) | |
tree | 2144a1f209cb0e3e94876eedee55045f5d99bd5d /releasenotes/source | |
parent | 7ac9d1b3242444a3d2ceed075816bfcf726608a0 (diff) | |
download | python-saharaclient-c2eb453deb9aae28a9892f63a30d8d34763a4c97.tar.gz |
Switch to newer openstackdocstheme and reno versions3.2.0
Switch to openstackdocstheme 2.2.1 and reno 3.1.0 versions. Using
these versions will allow especially:
* Linking from HTML to PDF document
* Allow parallel building of documents
* Fix some rendering problems
Update Sphinx version as well.
openstackdocstheme renames some variables, so follow the renames
before the next release removes them. A couple of variables are also
not needed anymore, remove them.
Set openstackdocs_auto_name to use 'project' as name.
Change pygments_style to 'native' since old theme version always used
'native' and the theme now respects the setting and using 'sphinx' can
lead to some strange rendering.
Depends-On: https://review.opendev.org/729744
Change-Id: I4c81bec463bb61a559ee8941545c16a08b7041f9
Diffstat (limited to 'releasenotes/source')
-rw-r--r-- | releasenotes/source/conf.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index fd1f2e4..1c413dc 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -20,10 +20,9 @@ extensions = [ ] # openstackdocstheme options -repository_name = 'openstack/python-saharaclient' -bug_project = '934' -bug_tag = 'releasenotes' -html_last_updated_fmt = '%Y-%m-%d %H:%M' +openstackdocs_repo_name = 'openstack/python-saharaclient' +openstackdocs_use_storyboard = True +openstackdocs_auto_name = False # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -49,7 +48,7 @@ version = '' exclude_patterns = [] # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' +pygments_style = 'native' # -- Options for HTML output ---------------------------------------------- |