From ce89f7b12a6f3e80dda2573bfa96a07b8b7d7740 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 20 Sep 2013 15:55:42 -0700 Subject: [PATCH] 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 --- setup.cfg | 4 ---- setup.py | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/setup.cfg b/setup.cfg index 6fc426cdc..3513c3bf5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,10 +21,6 @@ classifier = packages = novaclient -[global] -setup-hooks = - pbr.hooks.setup_hook - [entry_points] console_scripts = nova = novaclient.shell:main diff --git a/setup.py b/setup.py index 2a0786a8b..70c2b3f32 100644 --- a/setup.py +++ b/setup.py @@ -18,5 +18,5 @@ import setuptools setuptools.setup( - setup_requires=['pbr>=0.5.21,<1.0'], + setup_requires=['pbr'], pbr=True)