summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2016-08-09 13:20:17 -0700
committerJoffrey F <joffrey@docker.com>2016-08-17 12:20:13 -0700
commit95d9306d2a1fd22dffb12a0548abf2d2f744ed9d (patch)
tree1ee34220f6410ed3eda87ef4b8b32b2f7595cf98
parenta75553b3ca1a8c1d94a49f328f96ef9a1b634c70 (diff)
downloaddocker-py-95d9306d2a1fd22dffb12a0548abf2d2f744ed9d.tar.gz
Exclude requests 2.11 from setup.py to work around unicode bug
Signed-off-by: Joffrey F <joffrey@docker.com>
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index ac58b1f..85a4499 100644
--- a/setup.py
+++ b/setup.py
@@ -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',
]