From 7a943739cbcc76f1d6634db8227fb72483ba0baa Mon Sep 17 00:00:00 2001 From: Aanand Prasad Date: Fri, 17 Oct 2014 11:17:58 +0100 Subject: [PATCH] Fix docker-py requirement in setup.py I updated requirements.txt but forgot about setup.py, so the version on pypi is broken for people who already have docker-py 0.5.0 installed. Closes #547. Signed-off-by: Aanand Prasad --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 83f425c6d..edf1594fa 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ install_requires = [ 'requests >= 2.2.1, < 3', 'texttable >= 0.8.1, < 0.9', 'websocket-client >= 0.11.0, < 0.12', - 'docker-py >= 0.5, < 0.6', + 'docker-py >= 0.5.3, < 0.6', 'six >= 1.3.0, < 2', ]