summaryrefslogtreecommitdiff
path: root/debian/patches/Relax-dependencies.patch
blob: 5219c200ce33995c46dd2d4a40d97bffbdc41856 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/setup.py b/setup.py
index 192a0f6..085a338 100644
--- a/setup.py
+++ b/setup.py
@@ -33,11 +33,11 @@ install_requires = [
     'cached-property >= 1.2.0, < 2',
     'docopt >= 0.6.1, < 0.7',
     'PyYAML >= 3.10, < 4',
-    'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0, < 2.19',
-    'texttable >= 0.9.0, < 0.10',
+    'requests >= 2.6.1',
+    'texttable >= 0.9',
     'websocket-client >= 0.32.0, < 1.0',
-    'docker >= 3.1.4, < 4.0',
-    'dockerpty >= 0.4.1, < 0.5',
+    'docker >= 3.1.4',
+    'dockerpty >= 0.4.1',
     'six >= 1.3.0, < 2',
     'jsonschema >= 2.5.1, < 3',
 ]
 ]