Fix tox for releasenotes

tox -e releasenotes fails with error:
ImportError: No module named 'masakaridashboard'.

Since release notes are version independent, no need to set version
and release so removed importing version from masakaridashboard.

Change-Id: I2ef95fa2c938e2a8115c0602b53c5af6329a1bac
This commit is contained in:
openstack 2019-02-20 09:44:38 +00:00 committed by Tushar Patil
parent aa512a8d59
commit 3680bb9023
2 changed files with 17 additions and 18 deletions

View File

@ -1,13 +1,14 @@
# 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.
# Order matters to the pip dependency resolver, so sorting this file
# changes how packages are installed. New dependencies should be
# added in alphabetical order, however, some dependencies may need to
# be installed in a specific order.
# Docs Requirements
sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD
oslosphinx>=4.7.0 # Apache-2.0
reno>=2.5.0 # Apache-2.0
docutils>=0.11 # OSI-Approved Open Source, Public Domain
# 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.
# Order matters to the pip dependency resolver, so sorting this file
# changes how packages are installed. New dependencies should be
# added in alphabetical order, however, some dependencies may need to
# be installed in a specific order.
# Docs Requirements
sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD
openstackdocstheme>=1.18.1 # Apache-2.0
oslosphinx>=4.7.0 # Apache-2.0
reno>=2.5.0 # Apache-2.0
docutils>=0.11 # OSI-Approved Open Source, Public Domain

View File

@ -63,12 +63,10 @@ copyright = u'2017, OpenStack Foundation'
# |version| and |release|, also used in various other places throughout the
# built documents.
#
from masakaridashboard import version as ui_ver
# The short X.Y version.
# Release notes are version independent, no need to set version and release.
version = ''
# The full version, including alpha/beta/rc tags.
release = ui_ver.version_info.release_string()
# The short X.Y version.
version = ui_ver.version_info.version_string()
release = ''
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.