summaryrefslogtreecommitdiff
path: root/remove-requires-upper-bound.patch
blob: 2d84dc81d85a41bd6faf1148b55462d7b5b16dc8 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
diff -ur docker-compose-1.19.0.orig/requirements.txt docker-compose-1.19.0/requirements.txt
--- docker-compose-1.19.0.orig/requirements.txt	2018-03-05 21:55:17.014552784 +0100
+++ docker-compose-1.19.0/requirements.txt	2018-03-05 21:56:54.020768816 +0100
@@ -1,23 +1,22 @@
-backports.ssl-match-hostname==3.5.0.1; python_version < '3'
-cached-property==1.3.0
-certifi==2017.4.17
-chardet==3.0.4
-docker==3.4.1
-docker-pycreds==0.3.0
-dockerpty==0.4.1
-docopt==0.6.2
-enum34==1.1.6; python_version < '3.4'
-functools32==3.2.3.post2; python_version < '3.2'
+backports.ssl-match-hostname; python_version < '3'
+cached-property
+certifi
+chardet
+docker
+docker-pycreds
+dockerpty
+docopt
+enum34; python_version < '3.4'
+functools32; python_version < '3.2'
 git+git://github.com/tartley/colorama.git@bd378c725b45eba0b8e5cc091c3ca76a954c92ff; sys_platform == 'win32'
-idna==2.5
-ipaddress==1.0.18
-jsonschema==2.6.0
-pypiwin32==219; sys_platform == 'win32' and python_version < '3.6'
-pypiwin32==220; sys_platform == 'win32' and python_version >= '3.6'
-PySocks==1.6.7
-PyYAML==3.12
-requests==2.18.4
-six==1.10.0
-texttable==0.9.1
-urllib3==1.21.1
-websocket-client==0.32.0
+idna
+ipaddress
+jsonschema
+pypiwin32; sys_platform == 'win32'
+PySocks
+PyYAML
+requests
+six
+texttable
+urllib3
+websocket-client
diff -ur docker-compose-1.19.0.orig/setup.py docker-compose-1.19.0/setup.py
--- docker-compose-1.19.0.orig/setup.py	2018-03-05 21:55:17.014552784 +0100
+++ docker-compose-1.19.0/setup.py	2018-03-05 21:58:30.540322510 +0100
@@ -30,16 +30,16 @@
 
 
 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',
-    'websocket-client >= 0.32.0, < 1.0',
-    'docker >= 3.4.1, < 4.0',
-    'dockerpty >= 0.4.1, < 0.5',
-    'six >= 1.3.0, < 2',
-    'jsonschema >= 2.5.1, < 3',
+    'cached-property >= 1.2.0',
+    'docopt >= 0.6.1',
+    'PyYAML >= 3.10',
+    'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0',
+    'texttable >= 0.9.0',
+    'websocket-client >= 0.32.0',
+    'docker >= 3.4.1',
+    'dockerpty >= 0.4.1',
+    'six >= 1.3.0',
+    'jsonschema >= 2.5.1',
 ]
 
 
@@ -52,11 +52,11 @@
     tests_require.append('mock >= 1.0.1')
 
 extras_require = {
-    ':python_version < "3.4"': ['enum34 >= 1.0.4, < 2'],
+    ':python_version < "3.4"': ['enum34 >= 1.0.4'],
     ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5'],
     ':python_version < "3.3"': ['ipaddress >= 1.0.16'],
-    ':sys_platform == "win32"': ['colorama >= 0.3.9, < 0.4'],
-    'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
+    ':sys_platform == "win32"': ['colorama >= 0.3.9'],
+    'socks': ['PySocks >= 1.5.6, != 1.5.7'],
 }