]> git.pld-linux.org Git - packages/docker-compose.git/blame - remove-requires-upper-bound.patch
up to 1.24.0
[packages/docker-compose.git] / remove-requires-upper-bound.patch
CommitLineData
384fb2df
JP
1diff -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 @@
b030c146
JR
5-backports.ssl-match-hostname==3.5.0.1; python_version < '3'
6-cached-property==1.3.0
384fb2df 7-certifi==2017.4.17
b030c146 8-chardet==3.0.4
f6620652
JP
9-colorama==0.4.0; sys_platform == 'win32'
10-docker==3.6.0
f3b8d3cd 11-docker-pycreds==0.3.0
b030c146
JR
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'
f6620652
JP
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
384fb2df
JP
28+backports.ssl-match-hostname; python_version < '3'
29+cached-property
30+certifi
b030c146 31+chardet
f6620652 32+colorama; sys_platform == 'win32'
b030c146
JR
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'
384fb2df
JP
43+PySocks
44+PyYAML
b030c146
JR
45+requests
46+six
47+texttable
f6620652 48+urllib3; python_version == '3.3'
b030c146 49+websocket-client
384fb2df
JP
50diff -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 @@
a4a04e42
ER
54
55
b030c146
JR
56 install_requires = [
57- 'cached-property >= 1.2.0, < 2',
b030c146
JR
58- 'docopt >= 0.6.1, < 0.7',
59- 'PyYAML >= 3.10, < 4',
f6620652 60- 'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0, < 2.21',
384fb2df 61- 'texttable >= 0.9.0, < 0.10',
b030c146 62- 'websocket-client >= 0.32.0, < 1.0',
f6620652 63- 'docker >= 3.6.0, < 4.0',
b030c146
JR
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',
b030c146
JR
68+ 'docopt >= 0.6.1',
69+ 'PyYAML >= 3.10',
384fb2df
JP
70+ 'requests >= 2.6.1, != 2.11.0, != 2.12.2, != 2.18.0',
71+ 'texttable >= 0.9.0',
b030c146 72+ 'websocket-client >= 0.32.0',
f6620652 73+ 'docker >= 3.6.0',
b030c146
JR
74+ 'dockerpty >= 0.4.1',
75+ 'six >= 1.3.0',
76+ 'jsonschema >= 2.5.1',
77 ]
78
a4a04e42 79
384fb2df
JP
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'],
f6620652 88- ':sys_platform == "win32"': ['colorama >= 0.4, < 0.5'],
384fb2df 89- 'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
f6620652 90+ ':sys_platform == "win32"': ['colorama >= 0.4'],
384fb2df
JP
91+ 'socks': ['PySocks >= 1.5.6, != 1.5.7'],
92 }
93
94
This page took 0.093868 seconds and 4 git commands to generate.