summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Leaman <thomas.leaman@hp.com>2013-10-16 16:07:25 +0000
committerThomas Leaman <thomas.leaman@hp.com>2013-10-16 16:07:25 +0000
commita7e5f91d90b8a9205ed2a3b014a1bbc803aa4ada (patch)
treea5596e0780215a9394df73fa0611c8f28f8ca756
parentae25b565d37c831d4caea8347a6ba6279683fbca (diff)
downloadpbr-a7e5f91d90b8a9205ed2a3b014a1bbc803aa4ada.tar.gz
Prevent ordereddict installation on 2.7
This supports https://review.openstack.org/#/c/48475/ in glance to remove copy/pasted ordereddict code. Change-Id: I9b0a2588c6e7da86c048698c5e6dfe37ced4dd7f
-rw-r--r--pbr/packaging.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbr/packaging.py b/pbr/packaging.py
index 157a6f4..cce1500 100644
--- a/pbr/packaging.py
+++ b/pbr/packaging.py
@@ -49,7 +49,7 @@ REQUIREMENTS_FILES = ('requirements.txt', 'tools/pip-requires')
TEST_REQUIREMENTS_FILES = ('test-requirements.txt', 'tools/test-requires')
# part of the standard library starting with 2.7
# adding it to the requirements list screws distro installs
-BROKEN_ON_27 = ('argparse', 'importlib')
+BROKEN_ON_27 = ('argparse', 'importlib', 'ordereddict')
def get_requirements_files():