]> git.pld-linux.org Git - packages/docker-compose.git/blob - remove-requires-upper-bound.patch
up to 1.24.0
[packages/docker-compose.git] / remove-requires-upper-bound.patch
1 diff -ur docker-compose-1.19.0.orig/requirements.txt docker-compose-1.19.0/requirements.txt
2 --- docker-compose-1.19.0.orig/requirements.txt 2018-03-05 21:55:17.014552784 +0100
3 +++ docker-compose-1.19.0/requirements.txt      2018-03-05 21:56:54.020768816 +0100
4 @@ -1,23 +1,22 @@
5 -backports.ssl-match-hostname==3.5.0.1; python_version < '3'
6 -cached-property==1.3.0
7 -certifi==2017.4.17
8 -chardet==3.0.4
9 -colorama==0.4.0; sys_platform == 'win32'
10 -docker==3.6.0
11 -docker-pycreds==0.3.0
12 -dockerpty==0.4.1
13 -docopt==0.6.2
14 -enum34==1.1.6; python_version < '3.4'
15 -functools32==3.2.3.post2; python_version < '3.2'
16 -idna==2.5
17 -ipaddress==1.0.18
18 -jsonschema==2.6.0
19 -pypiwin32==219; sys_platform == 'win32' and python_version < '3.6'
20 -pypiwin32==223; sys_platform == 'win32' and python_version >= '3.6'
21 -PySocks==1.6.7
22 -PyYAML==3.12
23 -requests==2.20.0
24 -six==1.10.0
25 -texttable==0.9.1
26 -urllib3==1.21.1; python_version == '3.3'
27 -websocket-client==0.32.0
28 +backports.ssl-match-hostname; python_version < '3'
29 +cached-property
30 +certifi
31 +chardet
32 +colorama; sys_platform == 'win32'
33 +docker
34 +docker-pycreds
35 +dockerpty
36 +docopt
37 +enum34; python_version < '3.4'
38 +functools32; python_version < '3.2'
39 +idna
40 +ipaddress
41 +jsonschema
42 +pypiwin32; sys_platform == 'win32'
43 +PySocks
44 +PyYAML
45 +requests
46 +six
47 +texttable
48 +urllib3; python_version == '3.3'
49 +websocket-client
50 diff -ur docker-compose-1.19.0.orig/setup.py docker-compose-1.19.0/setup.py
51 --- docker-compose-1.19.0.orig/setup.py 2018-03-05 21:55:17.014552784 +0100
52 +++ docker-compose-1.19.0/setup.py      2018-03-05 21:58:30.540322510 +0100
53 @@ -30,16 +30,16 @@
54  
55  
56  install_requires = [
57 -    'cached-property >= 1.2.0, < 2',
58 -    'docopt >= 0.6.1, < 0.7',
59 -    'PyYAML >= 3.10, < 4',
60 -    'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0, < 2.21',
61 -    'texttable >= 0.9.0, < 0.10',
62 -    'websocket-client >= 0.32.0, < 1.0',
63 -    'docker >= 3.6.0, < 4.0',
64 -    'dockerpty >= 0.4.1, < 0.5',
65 -    'six >= 1.3.0, < 2',
66 -    'jsonschema >= 2.5.1, < 3',
67 +    'cached-property >= 1.2.0',
68 +    'docopt >= 0.6.1',
69 +    'PyYAML >= 3.10',
70 +    'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0',
71 +    'texttable >= 0.9.0',
72 +    'websocket-client >= 0.32.0',
73 +    'docker >= 3.6.0',
74 +    'dockerpty >= 0.4.1',
75 +    'six >= 1.3.0',
76 +    'jsonschema >= 2.5.1',
77  ]
78  
79  
80 @@ -52,11 +52,11 @@
81      tests_require.append('mock >= 1.0.1')
82  
83  extras_require = {
84 -    ':python_version < "3.4"': ['enum34 >= 1.0.4, < 2'],
85 +    ':python_version < "3.4"': ['enum34 >= 1.0.4'],
86      ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5'],
87      ':python_version < "3.3"': ['ipaddress >= 1.0.16'],
88 -    ':sys_platform == "win32"': ['colorama >= 0.4, < 0.5'],
89 -    'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
90 +    ':sys_platform == "win32"': ['colorama >= 0.4'],
91 +    'socks': ['PySocks >= 1.5.6, != 1.5.7'],
92  }
93  
94  
This page took 0.071619 seconds and 3 git commands to generate.