Merge pull request #1156 from docker/1155-requests-bug

Exclude requests 2.11 from setup.py to work around unicode bug
This commit is contained in:
Joffrey F 2016-08-09 13:34:53 -07:00 committed by GitHub
commit 876e7b49da
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ ROOT_DIR = os.path.dirname(__file__)
SOURCE_DIR = os.path.join(ROOT_DIR)
requirements = [
'requests >= 2.5.2',
'requests >= 2.5.2, < 2.11',
'six >= 1.4.0',
'websocket-client >= 0.32.0',
]