]> git.pld-linux.org Git - packages/docker-compose.git/blame - remove-requires-upper-bound.patch
up to 1.25.1
[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
eeb901ad 4@@ -1,24 +1,23 @@
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 9-colorama==0.4.0; sys_platform == 'win32'
277c9d50 10-docker==4.1.0
eeb901ad 11-docker-pycreds==0.4.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
277c9d50
JP
18-jsonschema==3.0.1
19-paramiko==2.6.0
f6620652
JP
20-pypiwin32==219; sys_platform == 'win32' and python_version < '3.6'
21-pypiwin32==223; sys_platform == 'win32' and python_version >= '3.6'
22-PySocks==1.6.7
eeb901ad 23-PyYAML==4.2b1
277c9d50
JP
24-requests==2.22.0
25-six==1.12.0
26-texttable==1.6.2
27-urllib3==1.24.2; python_version == '3.3'
f6620652 28-websocket-client==0.32.0
384fb2df
JP
29+backports.ssl-match-hostname; python_version < '3'
30+cached-property
31+certifi
b030c146 32+chardet
f6620652 33+colorama; sys_platform == 'win32'
b030c146
JR
34+docker
35+docker-pycreds
36+dockerpty
37+docopt
38+enum34; python_version < '3.4'
39+functools32; python_version < '3.2'
40+idna
41+ipaddress
42+jsonschema
eeb901ad 43+paramiko
b030c146 44+pypiwin32; sys_platform == 'win32'
384fb2df
JP
45+PySocks
46+PyYAML
b030c146
JR
47+requests
48+six
49+texttable
f6620652 50+urllib3; python_version == '3.3'
b030c146 51+websocket-client
277c9d50
JP
52--- docker-compose-1.25.0/setup.py.orig 2019-11-14 15:46:09.000000000 +0100
53+++ docker-compose-1.25.0/setup.py 2019-11-21 00:25:32.143128603 +0100
384fb2df 54@@ -30,16 +30,16 @@
a4a04e42
ER
55
56
b030c146
JR
57 install_requires = [
58- 'cached-property >= 1.2.0, < 2',
277c9d50
JP
59- 'docopt >= 0.6.1, < 1',
60- 'PyYAML >= 3.10, < 5',
61- 'requests >= 2.20.0, < 3',
62- 'texttable >= 0.9.0, < 2',
63- 'websocket-client >= 0.32.0, < 1',
64- 'docker[ssh] >= 3.7.0, < 5',
65- 'dockerpty >= 0.4.1, < 1',
b030c146 66- 'six >= 1.3.0, < 2',
277c9d50 67- 'jsonschema >= 2.5.1, < 4',
b030c146 68+ 'cached-property >= 1.2.0',
b030c146
JR
69+ 'docopt >= 0.6.1',
70+ 'PyYAML >= 3.10',
277c9d50 71+ 'requests >= 2.20.0',
384fb2df 72+ 'texttable >= 0.9.0',
b030c146 73+ 'websocket-client >= 0.32.0',
277c9d50 74+ 'docker >= 3.7.0',
b030c146
JR
75+ 'dockerpty >= 0.4.1',
76+ 'six >= 1.3.0',
77+ 'jsonschema >= 2.5.1',
78 ]
79
a4a04e42 80
277c9d50
JP
81@@ -52,13 +52,13 @@
82 tests_require.append('mock >= 1.0.1, < 4')
384fb2df
JP
83
84 extras_require = {
277c9d50 85- ':python_version < "3.2"': ['subprocess32 >= 3.5.4, < 4'],
384fb2df 86- ':python_version < "3.4"': ['enum34 >= 1.0.4, < 2'],
277c9d50
JP
87- ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5, < 4'],
88- ':python_version < "3.3"': ['backports.shutil_get_terminal_size == 1.0.0',
89- 'ipaddress >= 1.0.16, < 2'],
90- ':sys_platform == "win32"': ['colorama >= 0.4, < 1'],
384fb2df 91- 'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
277c9d50
JP
92+ ':python_version < "3.2"': ['subprocess32 >= 3.5.4'],
93+ ':python_version < "3.4"': ['enum34 >= 1.0.4'],
94+ ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5'],
95+ ':python_version < "3.3"': ['backports.shutil_get_terminal_size >= 1.0.0',
96+ 'ipaddress >= 1.0.16'],
f6620652 97+ ':sys_platform == "win32"': ['colorama >= 0.4'],
384fb2df
JP
98+ 'socks': ['PySocks >= 1.5.6, != 1.5.7'],
99 }
100
101
This page took 0.118079 seconds and 4 git commands to generate.