Support dynamic documentation versioning using pbr

- Add a version.py file to allow querying of the pbr version for the package
which is pulled from the git tags
- Use this when doing the sphinx docs generation

Change-Id: Ic892b131c9be2cc65a2b468c9cdb2ff23d1d8743
This commit is contained in:
adreznec 2015-08-19 09:09:32 -05:00 committed by Adam Reznechek
parent c4cfffcc84
commit 95b3be83b9
2 changed files with 20 additions and 2 deletions

View File

@ -0,0 +1,17 @@
# Copyright 2015 IBM Corp.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import pbr.version
version_info = pbr.version.VersionInfo('__project__')

View File

@ -53,10 +53,11 @@ copyright = u'2015, IBM'
# |version| and |release|, also used in various other places throughout the
# built documents.
#
import ceilometer_powervm.version
# The short X.Y version.
version = '0.1.0'
version = ceilometer_powervm.version.version_info.version_string()
# The full version, including alpha/beta/rc tags.
release = '0.1.0'
release = ceilometer_powervm.version.version_info.release_string()
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.