]> git.pld-linux.org Git - packages/docker-compose.git/blame - remove-requires-upper-bound.patch
up to 1.28.5
[packages/docker-compose.git] / remove-requires-upper-bound.patch
CommitLineData
0d46711e
JP
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
b110482c 3@@ -1,22 +1,22 @@
added520 4-backports.shutil_get_terminal_size==1.0.0
added520 5-cached-property==1.5.1
0d46711e 6-certifi==2020.6.20
b030c146 7-chardet==3.0.4
added520 8-colorama==0.4.3; sys_platform == 'win32'
1bdf357e 9-distro==1.5.0
089a701d 10-docker==4.4.4
eeb901ad 11-docker-pycreds==0.4.0
b030c146
JR
12-dockerpty==0.4.1
13-docopt==0.6.2
0d46711e 14-idna==2.10
added520
JP
15-ipaddress==1.0.23
16-jsonschema==3.2.0
17-paramiko==2.7.1
added520 18-PySocks==1.7.1
0d46711e 19-python-dotenv==0.14.0
b110482c 20-pywin32==227; sys_platform == 'win32'
0d46711e
JP
21-PyYAML==5.3.1
22-requests==2.24.0
277c9d50 23-texttable==1.6.2
0d46711e 24-urllib3==1.25.10; python_version == '3.3'
added520
JP
25-websocket-client==0.57.0
26+backports.shutil_get_terminal_size
384fb2df
JP
27+cached-property
28+certifi
b030c146 29+chardet
f6620652 30+colorama; sys_platform == 'win32'
1bdf357e 31+distro
b030c146
JR
32+docker
33+docker-pycreds
34+dockerpty
35+docopt
b030c146
JR
36+idna
37+ipaddress
38+jsonschema
eeb901ad 39+paramiko
384fb2df 40+PySocks
1bdf357e 41+python-dotenv
b110482c 42+pywin32; sys_platform == 'win32'
384fb2df 43+PyYAML
b030c146 44+requests
b030c146 45+texttable
f6620652 46+urllib3; python_version == '3.3'
b030c146 47+websocket-client
0d46711e
JP
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 @@
a4a04e42
ER
51
52
b030c146
JR
53 install_requires = [
54- 'cached-property >= 1.2.0, < 2',
277c9d50 55- 'docopt >= 0.6.1, < 1',
added520 56- 'PyYAML >= 3.10, < 6',
277c9d50
JP
57- 'requests >= 2.20.0, < 3',
58- 'texttable >= 0.9.0, < 2',
59- 'websocket-client >= 0.32.0, < 1',
1bdf357e 60- 'distro >= 1.5.0, < 2',
089a701d 61- 'docker[ssh] >= 4.4.4, < 5',
277c9d50 62- 'dockerpty >= 0.4.1, < 1',
277c9d50 63- 'jsonschema >= 2.5.1, < 4',
1bdf357e 64- 'python-dotenv >= 0.13.0, < 1',
b030c146 65+ 'cached-property >= 1.2.0',
b030c146
JR
66+ 'docopt >= 0.6.1',
67+ 'PyYAML >= 3.10',
277c9d50 68+ 'requests >= 2.20.0',
384fb2df 69+ 'texttable >= 0.9.0',
b030c146 70+ 'websocket-client >= 0.32.0',
1bdf357e 71+ 'distro >= 1.5.0',
089a701d 72+ 'docker[ssh] >= 4.4.4',
b030c146 73+ 'dockerpty >= 0.4.1',
b030c146 74+ 'jsonschema >= 2.5.1',
1bdf357e 75+ 'python-dotenv >= 0.13.0',
b030c146
JR
76 ]
77
a4a04e42 78
0d46711e 79@@ -49,9 +49,9 @@
277c9d50 80 tests_require.append('mock >= 1.0.1, < 4')
384fb2df
JP
81
82 extras_require = {
277c9d50 83- ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5, < 4'],
277c9d50 84- ':sys_platform == "win32"': ['colorama >= 0.4, < 1'],
384fb2df 85- 'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
277c9d50 86+ ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5'],
f6620652 87+ ':sys_platform == "win32"': ['colorama >= 0.4'],
384fb2df 88+ 'socks': ['PySocks >= 1.5.6, != 1.5.7'],
1bdf357e 89 'tests': tests_require,
384fb2df
JP
90 }
91
This page took 1.399906 seconds and 4 git commands to generate.