Merge "Prevent ordereddict installation on 2.7"

This commit is contained in:
Jenkins 2013-10-27 22:58:13 +00:00 committed by Gerrit Code Review
commit a3a875b1a0
1 changed files with 1 additions and 1 deletions

View File

@ -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():