Skip to content

Commit aa28083

Browse files
committed
Migrate to pbr.
Fixes bug 1179007. Change-Id: I66b78ec4b5ba70a1bf1e375a5d1b7575a1879730
1 parent 24b4039 commit aa28083

7 files changed

Lines changed: 47 additions & 510 deletions

File tree

cinderclient/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@
1414
# License for the specific language governing permissions and limitations
1515
# under the License.
1616

17-
from cinderclient.openstack.common import version
17+
__all__ = ['__version__']
1818

19-
version_info = version.VersionInfo('python-cinderclient')
19+
import pbr.version
20+
21+
version_info = pbr.version.VersionInfo('python-cinderclient')
2022
# We have a circular import problem when we first run python setup.py sdist
2123
# It's harmless, so deflect it.
2224
try:

cinderclient/openstack/common/setup.py

Lines changed: 0 additions & 367 deletions
This file was deleted.

0 commit comments

Comments
 (0)