Update config

Removed duplicate entry in conf.py for version and release
variables. Set both version and release to empty string, so
that the string above left nav renders only the project name.

Story: 2004900
Task: 29220

Change-Id: I7dbbbd78dc33841baec32ef1d48a5ab3dc1fd860
Signed-off-by: Kristal Dale <kristal.dale@intel.com>
This commit is contained in:
Kristal Dale 2019-01-30 15:22:56 -08:00
parent 9a52fdb0db
commit 9690fc0c3e
1 changed files with 3 additions and 8 deletions

View File

@ -25,21 +25,16 @@ project = 'stx-docs'
copyright = '2018, StarlingX'
author = 'StarlingX'
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = ''
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
version_info = pbr.version.VersionInfo('python-openstackclient')
#
# The short X.Y version.
version = version_info.version_string()
version = ''
# The full version, including alpha/beta/rc tags.
release = version_info.release_string()
release = ''
# -- General configuration ---------------------------------------------------