From: Felipe Sateler <fsateler@gmail.com>
Date: Mon, 17 Oct 2016 10:35:03 -0300
Subject: Relax dependencies

docker-py, dockerpty and requests are too restrictive
---
 setup.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/setup.py b/setup.py
index 5cb52da..6fd3060 100644
--- a/setup.py
+++ b/setup.py
@@ -31,11 +31,11 @@ install_requires = [
     'cached-property >= 1.2.0, < 2',
     'docopt >= 0.6.1, < 0.7',
     'PyYAML >= 3.10, < 4',
-    'requests >= 2.6.1, < 2.8',
+    'requests >= 2.6.1',
     'texttable >= 0.8.1, < 0.9',
     'websocket-client >= 0.32.0, < 1.0',
-    'docker-py >= 1.9.0, < 2.0',
-    'dockerpty >= 0.4.1, < 0.5',
+    'docker-py >= 1.9.0',
+    'dockerpty >= 0.4.1',
     'six >= 1.3.0, < 2',
     'jsonschema >= 2.5.1, < 3',
 ]
