Added pbr version in setup.py as it's required

setup_requires flag in setup method in setuptools requires version
of the package(s) set as dependency, so pbr>=1.8 added

Change-Id: I82e504f8d029348c5a58d5352ae56dae64b78771
This commit is contained in:
Saad Zaher 2016-11-24 14:38:02 +00:00 committed by Pierre Mathieu
parent 5af54e4f62
commit dc7820e423
2 changed files with 9 additions and 9 deletions

View File

@ -1,12 +1,12 @@
pbr>=1.6 # Apache-2.0
python-keystoneclient>=2.0.0,!=2.1.0 # Apache-2.0
pbr>=1.8 # Apache-2.0
python-keystoneclient>=3.8.0 # Apache-2.0
python-monascaclient>=1.1.0 # Apache-2.0
python-neutronclient>=5.1.0 # Apache-2.0
python-novaclient>=2.29.0,!=2.33.0 # Apache-2.0
PyYAML>=3.1.0 # MIT
oslo.config>=3.14.0 # Apache-2.0
python-novaclient>=6.0.0,!=7.0.0 # Apache-2.0
PyYAML>=3.10.0 # MIT
oslo.config>=3.14.0,!=3.18.0 # Apache-2.0
oslo.i18n>=2.1.0 # Apache-2.0
oslo.utils>=3.16.0 # Apache-2.0
oslo.log>=1.14.0 # Apache-2.0
oslo.utils>=3.18.0 # Apache-2.0
oslo.log>=3.11.0 # Apache-2.0
libvirt-python>=1.2.5 # LGPLv2+
Jinja2>=2.8 # BSD License (3 clause)
Jinja2>=2.8,!=2.9.0,!=2.9.1,!=2.9.2,!=2.9.3,!=2.9.4 # BSD License (3 clause)

View File

@ -25,5 +25,5 @@ except ImportError:
pass
setuptools.setup(
setup_requires=['pbr'],
setup_requires=['pbr>=1.8'],
pbr=True)