From 5671868338327cbd680f7f7b52ac9bfc57e18236 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Fri, 24 Oct 2014 09:31:00 -0400 Subject: [PATCH] Add pbr to installation requirements Add pbr to the list of installation requirements so that it is installed via pip before this library is installed, instead of with easy_install. This avoids issues like Bug #1384919, and ensures that projects that use this library as a dependency are properly installed. Change-Id: I6c155370dbd01fe4748d5137bdf288e8d3e1a67e --- requirements-py2.txt | 2 ++ requirements-py3.txt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/requirements-py2.txt b/requirements-py2.txt index 61348779..260f535e 100644 --- a/requirements-py2.txt +++ b/requirements-py2.txt @@ -2,6 +2,8 @@ # 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 + # Packages needed for using this library. # Only needed on python 2.6 diff --git a/requirements-py3.txt b/requirements-py3.txt index ea305822..446e5798 100644 --- a/requirements-py3.txt +++ b/requirements-py3.txt @@ -2,6 +2,8 @@ # 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 + # Packages needed for using this library. # Python 2->3 compatibility library.