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