From fb128ea722840585bc77edc8f9dccaf604cd1d19 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Thu, 17 Sep 2015 14:19:58 -0400 Subject: [PATCH] Bump pbr requirement to >= 1.3 Also remove invalid comment about setup.py being managed my requirements repo. Change-Id: I0b3e604b14648f9ae52ca2381269c13cf9e1574f Signed-off-by: Paul Belanger --- requirements.txt | 2 -- setup.py | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index ae4ad53..38952d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,8 +2,6 @@ # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. -pbr>=0.6,!=0.7,<1.0 - oslo.config>=1.11.0 oslo.log>=1.0.0,<1.1.0 PyYAML>=3.1.0 diff --git a/setup.py b/setup.py index 7363757..f8fcdec 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT import setuptools # In python < 2.7.4, a lazy loading of package `pbr` will break @@ -26,5 +25,5 @@ except ImportError: pass setuptools.setup( - setup_requires=['pbr'], + setup_requires=['pbr>=1.3'], pbr=True)