From 2c8bf90854cc36bc0426e473369cdcb9d647b935 Mon Sep 17 00:00:00 2001 From: Cosmin Poieana Date: Tue, 26 May 2015 17:22:15 +0300 Subject: [PATCH] Get rid of flake8 compatibility issues due to pbr The version of pbr package should stay between a restricted range so that flake8 gate will work as expected. Details: http://sprunge.us/RDVV?log (L: 92) Change-Id: Ifeb52fbac28dac40b894923c727b60d56768976d --- requirements.txt | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index d4aefa0d..d1c06275 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -pbr>=0.10 +pbr>=0.10,<1.0 iso8601 eventlet netaddr>=0.7.6 @@ -9,4 +9,4 @@ Babel>=1.3 oauthlib netifaces PyYAML -tzlocal \ No newline at end of file +tzlocal diff --git a/setup.py b/setup.py index e53e1dad..c5e33745 100644 --- a/setup.py +++ b/setup.py @@ -15,5 +15,5 @@ import setuptools setuptools.setup( - setup_requires=['pbr>=0.10'], + setup_requires=['pbr>=0.10,<1.0'], pbr=True)