PBR version needs to be explicitly set on setup.py

For some reason PBR does not install dependencies if
the PBR version is not set in setup.py

Change-Id: I1edbe46a88b0592b34fe49e38fcdd8a6c85bfd4d
This commit is contained in:
Fausto Marzi 2015-11-06 19:29:24 +00:00
parent 3e3f6f9d6d
commit 097c74fb88
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ if install_requires:
subprocess.call(['pip', 'install', install_requires])
setup(
setup_requires='pbr',
setup_requires='pbr>=0.6,!=0.7,<1.0',
pbr=True
)