]> git.pld-linux.org Git - packages/docker-compose.git/blob - remove-requires-upper-bound.patch
up to 1.27.3
[packages/docker-compose.git] / remove-requires-upper-bound.patch
1 --- docker-compose-1.27.0/requirements.txt.orig 2020-09-07 22:15:24.818988058 +0200
2 +++ docker-compose-1.27.0/requirements.txt      2020-09-07 22:17:28.372476931 +0200
3 @@ -1,23 +1,22 @@
4 -backports.shutil_get_terminal_size==1.0.0
5 -cached-property==1.5.1
6 -certifi==2020.6.20
7 -chardet==3.0.4
8 -colorama==0.4.3; sys_platform == 'win32'
9 -distro==1.5.0
10 -docker==4.3.1
11 -docker-pycreds==0.4.0
12 -dockerpty==0.4.1
13 -docopt==0.6.2
14 -idna==2.10
15 -ipaddress==1.0.23
16 -jsonschema==3.2.0
17 -paramiko==2.7.1
18 -pypiwin32==219; sys_platform == 'win32' and python_version < '3.6'
19 -pypiwin32==223; sys_platform == 'win32' and python_version >= '3.6'
20 -PySocks==1.7.1
21 -python-dotenv==0.14.0
22 -PyYAML==5.3.1
23 -requests==2.24.0
24 -texttable==1.6.2
25 -urllib3==1.25.10; python_version == '3.3'
26 -websocket-client==0.57.0
27 +backports.shutil_get_terminal_size
28 +cached-property
29 +certifi
30 +chardet
31 +colorama; sys_platform == 'win32'
32 +distro
33 +docker
34 +docker-pycreds
35 +dockerpty
36 +docopt
37 +idna
38 +ipaddress
39 +jsonschema
40 +paramiko
41 +pypiwin3; sys_platform == 'win32'
42 +PySocks
43 +python-dotenv
44 +PyYAML
45 +requests
46 +texttable
47 +urllib3; python_version == '3.3'
48 +websocket-client
49 --- docker-compose-1.27.0/setup.py.orig 2020-09-07 22:15:24.818988058 +0200
50 +++ docker-compose-1.27.0/setup.py      2020-09-07 22:19:17.642592487 +0200
51 @@ -25,17 +25,17 @@
52  
53  
54  install_requires = [
55 -    'cached-property >= 1.2.0, < 2',
56 -    'docopt >= 0.6.1, < 1',
57 -    'PyYAML >= 3.10, < 6',
58 -    'requests >= 2.20.0, < 3',
59 -    'texttable >= 0.9.0, < 2',
60 -    'websocket-client >= 0.32.0, < 1',
61 -    'distro >= 1.5.0, < 2',
62 -    'docker[ssh] >= 4.3.1, < 5',
63 -    'dockerpty >= 0.4.1, < 1',
64 -    'jsonschema >= 2.5.1, < 4',
65 -    'python-dotenv >= 0.13.0, < 1',
66 +    'cached-property >= 1.2.0',
67 +    'docopt >= 0.6.1',
68 +    'PyYAML >= 3.10',
69 +    'requests >= 2.20.0',
70 +    'texttable >= 0.9.0',
71 +    'websocket-client >= 0.32.0',
72 +    'distro >= 1.5.0',
73 +    'docker[ssh] >= 4.3.1',
74 +    'dockerpty >= 0.4.1',
75 +    'jsonschema >= 2.5.1',
76 +    'python-dotenv >= 0.13.0',
77  ]
78  
79  
80 @@ -49,9 +49,9 @@
81      tests_require.append('mock >= 1.0.1, < 4')
82  
83  extras_require = {
84 -    ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5, < 4'],
85 -    ':sys_platform == "win32"': ['colorama >= 0.4, < 1'],
86 -    'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
87 +    ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5'],
88 +    ':sys_platform == "win32"': ['colorama >= 0.4'],
89 +    'socks': ['PySocks >= 1.5.6, != 1.5.7'],
90      'tests': tests_require,
91  }
92  
This page took 0.094723 seconds and 3 git commands to generate.