]> git.pld-linux.org Git - packages/docker-compose.git/blob - remove-requires-upper-bound.patch
up to 1.26.2
[packages/docker-compose.git] / remove-requires-upper-bound.patch
1 --- docker-compose-1.26.0/requirements.txt.orig 2020-06-03 17:13:24.695266751 +0200
2 +++ docker-compose-1.26.0/requirements.txt      2020-06-03 17:15:46.190749529 +0200
3 @@ -1,29 +1,28 @@
4 -backports.shutil_get_terminal_size==1.0.0
5 -backports.ssl-match-hostname==3.5.0.1; python_version < '3'
6 -cached-property==1.5.1
7 -certifi==2020.4.5.1
8 -chardet==3.0.4
9 -colorama==0.4.3; sys_platform == 'win32'
10 -distro==1.5.0
11 -docker==4.2.2
12 -docker-pycreds==0.4.0
13 -dockerpty==0.4.1
14 -docopt==0.6.2
15 -enum34==1.1.6; python_version < '3.4'
16 -functools32==3.2.3.post2; python_version < '3.2'
17 -idna==2.8
18 -ipaddress==1.0.23
19 -jsonschema==3.2.0
20 -paramiko==2.7.1
21 -pypiwin32==219; sys_platform == 'win32' and python_version < '3.6'
22 -pypiwin32==223; sys_platform == 'win32' and python_version >= '3.6'
23 -PySocks==1.7.1
24 -python-dotenv==0.13.0
25 -PyYAML==5.3
26 -requests==2.22.0
27 -six==1.12.0
28 -subprocess32==3.5.4; python_version < '3.2'
29 -texttable==1.6.2
30 -urllib3==1.25.7; python_version == '3.3'
31 -wcwidth==0.1.9
32 -websocket-client==0.57.0
33 +backports.shutil_get_terminal_size
34 +backports.ssl-match-hostname; python_version < '3'
35 +cached-property
36 +certifi
37 +chardet
38 +colorama; sys_platform == 'win32'
39 +distro
40 +docker
41 +docker-pycreds
42 +dockerpty
43 +docopt
44 +enum34; python_version < '3.4'
45 +functools32; python_version < '3.2'
46 +idna
47 +ipaddress
48 +jsonschema
49 +paramiko
50 +pypiwin32; sys_platform == 'win32'
51 +PySocks
52 +python-dotenv
53 +PyYAML
54 +requests
55 +six
56 +subprocess32; python_version < '3.2'
57 +texttable
58 +urllib3; python_version == '3.3'
59 +wcwidth
60 +websocket-client
61 --- docker-compose-1.26.0/setup.py.orig 2020-06-03 17:13:24.695266751 +0200
62 +++ docker-compose-1.26.0/setup.py      2020-06-03 17:17:48.769056566 +0200
63 @@ -30,18 +30,18 @@
64  
65  
66  install_requires = [
67 -    'cached-property >= 1.2.0, < 2',
68 -    'docopt >= 0.6.1, < 1',
69 -    'PyYAML >= 3.10, < 6',
70 -    'requests >= 2.20.0, < 3',
71 -    'texttable >= 0.9.0, < 2',
72 -    'websocket-client >= 0.32.0, < 1',
73 -    'distro >= 1.5.0, < 2',
74 -    'docker[ssh] >= 4.2.2, < 5',
75 -    'dockerpty >= 0.4.1, < 1',
76 -    'six >= 1.3.0, < 2',
77 -    'jsonschema >= 2.5.1, < 4',
78 -    'python-dotenv >= 0.13.0, < 1',
79 +    'cached-property >= 1.2.0',
80 +    'docopt >= 0.6.1',
81 +    'PyYAML >= 3.10',
82 +    'requests >= 2.20.0',
83 +    'texttable >= 0.9.0',
84 +    'websocket-client >= 0.32.0',
85 +    'distro >= 1.5.0',
86 +    'docker[ssh] >= 4.2.2',
87 +    'dockerpty >= 0.4.1',
88 +    'six >= 1.3.0',
89 +    'jsonschema >= 2.5.1',
90 +    'python-dotenv >= 0.13.0',
91  ]
92  
93  
94 @@ -55,13 +55,13 @@
95      tests_require.append('mock >= 1.0.1, < 4')
96  
97  extras_require = {
98 -    ':python_version < "3.2"': ['subprocess32 >= 3.5.4, < 4'],
99 -    ':python_version < "3.4"': ['enum34 >= 1.0.4, < 2'],
100 -    ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5, < 4'],
101 -    ':python_version < "3.3"': ['backports.shutil_get_terminal_size == 1.0.0',
102 -                                'ipaddress >= 1.0.16, < 2'],
103 -    ':sys_platform == "win32"': ['colorama >= 0.4, < 1'],
104 -    'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
105 +    ':python_version < "3.2"': ['subprocess32 >= 3.5.4'],
106 +    ':python_version < "3.4"': ['enum34 >= 1.0.4'],
107 +    ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5'],
108 +    ':python_version < "3.3"': ['backports.shutil_get_terminal_size >= 1.0.0',
109 +                                'ipaddress >= 1.0.16'],
110 +    ':sys_platform == "win32"': ['colorama >= 0.4'],
111 +    'socks': ['PySocks >= 1.5.6, != 1.5.7'],
112      'tests': tests_require,
113  }
114  
This page took 0.072196 seconds and 3 git commands to generate.