Update pbr usage

We've discovered that having versions in setup_requires leads to evil
and death. Also, the setup-hooks in setup.cfg are completely unnecessary
anymore.

Change-Id: I8878e635e0828bbddb81d9c6321a9f10ad3b89fe
This commit is contained in:
Monty Taylor 2013-09-20 15:55:42 -07:00
parent c7e62d4c57
commit ce89f7b12a
2 changed files with 1 additions and 5 deletions

View File

@ -21,10 +21,6 @@ classifier =
packages = packages =
novaclient novaclient
[global]
setup-hooks =
pbr.hooks.setup_hook
[entry_points] [entry_points]
console_scripts = console_scripts =
nova = novaclient.shell:main nova = novaclient.shell:main

View File

@ -18,5 +18,5 @@
import setuptools import setuptools
setuptools.setup( setuptools.setup(
setup_requires=['pbr>=0.5.21,<1.0'], setup_requires=['pbr'],
pbr=True) pbr=True)