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