]> git.pld-linux.org Git - packages/docker-compose.git/blame - remove-requires-upper-bound.patch
up to 1.26.1
[packages/docker-compose.git] / remove-requires-upper-bound.patch
CommitLineData
1bdf357e
JP
1--- docker-compose-1.26.0/requirements.txt.orig 2020-06-03 17:13:24.695266751 +0200
2+++ docker-compose-1.26.0/requirements.txt 2020-06-03 17:15:46.190749529 +0200
3@@ -1,29 +1,28 @@
added520 4-backports.shutil_get_terminal_size==1.0.0
b030c146 5-backports.ssl-match-hostname==3.5.0.1; python_version < '3'
added520 6-cached-property==1.5.1
1bdf357e 7-certifi==2020.4.5.1
b030c146 8-chardet==3.0.4
added520 9-colorama==0.4.3; sys_platform == 'win32'
1bdf357e 10-distro==1.5.0
bf473853 11-docker==4.2.2
eeb901ad 12-docker-pycreds==0.4.0
b030c146
JR
13-dockerpty==0.4.1
14-docopt==0.6.2
15-enum34==1.1.6; python_version < '3.4'
16-functools32==3.2.3.post2; python_version < '3.2'
added520
JP
17-idna==2.8
18-ipaddress==1.0.23
19-jsonschema==3.2.0
20-paramiko==2.7.1
f6620652
JP
21-pypiwin32==219; sys_platform == 'win32' and python_version < '3.6'
22-pypiwin32==223; sys_platform == 'win32' and python_version >= '3.6'
added520 23-PySocks==1.7.1
1bdf357e 24-python-dotenv==0.13.0
added520 25-PyYAML==5.3
277c9d50
JP
26-requests==2.22.0
27-six==1.12.0
added520 28-subprocess32==3.5.4; python_version < '3.2'
277c9d50 29-texttable==1.6.2
added520 30-urllib3==1.25.7; python_version == '3.3'
1bdf357e 31-wcwidth==0.1.9
added520
JP
32-websocket-client==0.57.0
33+backports.shutil_get_terminal_size
384fb2df
JP
34+backports.ssl-match-hostname; python_version < '3'
35+cached-property
36+certifi
b030c146 37+chardet
f6620652 38+colorama; sys_platform == 'win32'
1bdf357e 39+distro
b030c146
JR
40+docker
41+docker-pycreds
42+dockerpty
43+docopt
44+enum34; python_version < '3.4'
45+functools32; python_version < '3.2'
46+idna
47+ipaddress
48+jsonschema
eeb901ad 49+paramiko
b030c146 50+pypiwin32; sys_platform == 'win32'
384fb2df 51+PySocks
1bdf357e 52+python-dotenv
384fb2df 53+PyYAML
b030c146
JR
54+requests
55+six
added520 56+subprocess32; python_version < '3.2'
b030c146 57+texttable
f6620652 58+urllib3; python_version == '3.3'
1bdf357e 59+wcwidth
b030c146 60+websocket-client
1bdf357e
JP
61--- docker-compose-1.26.0/setup.py.orig 2020-06-03 17:13:24.695266751 +0200
62+++ docker-compose-1.26.0/setup.py 2020-06-03 17:17:48.769056566 +0200
63@@ -30,18 +30,18 @@
a4a04e42
ER
64
65
b030c146
JR
66 install_requires = [
67- 'cached-property >= 1.2.0, < 2',
277c9d50 68- 'docopt >= 0.6.1, < 1',
added520 69- 'PyYAML >= 3.10, < 6',
277c9d50
JP
70- 'requests >= 2.20.0, < 3',
71- 'texttable >= 0.9.0, < 2',
72- 'websocket-client >= 0.32.0, < 1',
1bdf357e 73- 'distro >= 1.5.0, < 2',
bf473853 74- 'docker[ssh] >= 4.2.1, < 5',
277c9d50 75- 'dockerpty >= 0.4.1, < 1',
b030c146 76- 'six >= 1.3.0, < 2',
277c9d50 77- 'jsonschema >= 2.5.1, < 4',
1bdf357e 78- 'python-dotenv >= 0.13.0, < 1',
b030c146 79+ 'cached-property >= 1.2.0',
b030c146
JR
80+ 'docopt >= 0.6.1',
81+ 'PyYAML >= 3.10',
277c9d50 82+ 'requests >= 2.20.0',
384fb2df 83+ 'texttable >= 0.9.0',
b030c146 84+ 'websocket-client >= 0.32.0',
1bdf357e 85+ 'distro >= 1.5.0',
bf473853 86+ 'docker[ssh] >= 4.2.1',
b030c146
JR
87+ 'dockerpty >= 0.4.1',
88+ 'six >= 1.3.0',
89+ 'jsonschema >= 2.5.1',
1bdf357e 90+ 'python-dotenv >= 0.13.0',
b030c146
JR
91 ]
92
a4a04e42 93
1bdf357e 94@@ -55,13 +55,13 @@
277c9d50 95 tests_require.append('mock >= 1.0.1, < 4')
384fb2df
JP
96
97 extras_require = {
277c9d50 98- ':python_version < "3.2"': ['subprocess32 >= 3.5.4, < 4'],
384fb2df 99- ':python_version < "3.4"': ['enum34 >= 1.0.4, < 2'],
277c9d50
JP
100- ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5, < 4'],
101- ':python_version < "3.3"': ['backports.shutil_get_terminal_size == 1.0.0',
102- 'ipaddress >= 1.0.16, < 2'],
103- ':sys_platform == "win32"': ['colorama >= 0.4, < 1'],
384fb2df 104- 'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
277c9d50
JP
105+ ':python_version < "3.2"': ['subprocess32 >= 3.5.4'],
106+ ':python_version < "3.4"': ['enum34 >= 1.0.4'],
107+ ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5'],
108+ ':python_version < "3.3"': ['backports.shutil_get_terminal_size >= 1.0.0',
109+ 'ipaddress >= 1.0.16'],
f6620652 110+ ':sys_platform == "win32"': ['colorama >= 0.4'],
384fb2df 111+ 'socks': ['PySocks >= 1.5.6, != 1.5.7'],
1bdf357e 112 'tests': tests_require,
384fb2df
JP
113 }
114
This page took 0.09599 seconds and 4 git commands to generate.