diff -ur docker-compose-1.19.0.orig/requirements.txt docker-compose-1.19.0/requirements.txt --- docker-compose-1.19.0.orig/requirements.txt 2018-03-05 21:55:17.014552784 +0100 +++ docker-compose-1.19.0/requirements.txt 2018-03-05 21:56:54.020768816 +0100 @@ -1,24 +1,23 @@ -backports.ssl-match-hostname==3.5.0.1; python_version < '3' -cached-property==1.3.0 -certifi==2017.4.17 -chardet==3.0.4 -colorama==0.4.0; sys_platform == 'win32' -docker==4.1.0 -docker-pycreds==0.4.0 -dockerpty==0.4.1 -docopt==0.6.2 -enum34==1.1.6; python_version < '3.4' -functools32==3.2.3.post2; python_version < '3.2' -idna==2.5 -ipaddress==1.0.18 -jsonschema==3.0.1 -paramiko==2.6.0 -pypiwin32==219; sys_platform == 'win32' and python_version < '3.6' -pypiwin32==223; sys_platform == 'win32' and python_version >= '3.6' -PySocks==1.6.7 -PyYAML==4.2b1 -requests==2.22.0 -six==1.12.0 -texttable==1.6.2 -urllib3==1.24.2; python_version == '3.3' -websocket-client==0.32.0 +backports.ssl-match-hostname; python_version < '3' +cached-property +certifi +chardet +colorama; sys_platform == 'win32' +docker +docker-pycreds +dockerpty +docopt +enum34; python_version < '3.4' +functools32; python_version < '3.2' +idna +ipaddress +jsonschema +paramiko +pypiwin32; sys_platform == 'win32' +PySocks +PyYAML +requests +six +texttable +urllib3; python_version == '3.3' +websocket-client --- docker-compose-1.25.0/setup.py.orig 2019-11-14 15:46:09.000000000 +0100 +++ docker-compose-1.25.0/setup.py 2019-11-21 00:25:32.143128603 +0100 @@ -30,16 +30,16 @@ install_requires = [ - 'cached-property >= 1.2.0, < 2', - 'docopt >= 0.6.1, < 1', - 'PyYAML >= 3.10, < 5', - 'requests >= 2.20.0, < 3', - 'texttable >= 0.9.0, < 2', - 'websocket-client >= 0.32.0, < 1', - 'docker[ssh] >= 3.7.0, < 5', - 'dockerpty >= 0.4.1, < 1', - 'six >= 1.3.0, < 2', - 'jsonschema >= 2.5.1, < 4', + 'cached-property >= 1.2.0', + 'docopt >= 0.6.1', + 'PyYAML >= 3.10', + 'requests >= 2.20.0', + 'texttable >= 0.9.0', + 'websocket-client >= 0.32.0', + 'docker >= 3.7.0', + 'dockerpty >= 0.4.1', + 'six >= 1.3.0', + 'jsonschema >= 2.5.1', ] @@ -52,13 +52,13 @@ tests_require.append('mock >= 1.0.1, < 4') extras_require = { - ':python_version < "3.2"': ['subprocess32 >= 3.5.4, < 4'], - ':python_version < "3.4"': ['enum34 >= 1.0.4, < 2'], - ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5, < 4'], - ':python_version < "3.3"': ['backports.shutil_get_terminal_size == 1.0.0', - 'ipaddress >= 1.0.16, < 2'], - ':sys_platform == "win32"': ['colorama >= 0.4, < 1'], - 'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'], + ':python_version < "3.2"': ['subprocess32 >= 3.5.4'], + ':python_version < "3.4"': ['enum34 >= 1.0.4'], + ':python_version < "3.5"': ['backports.ssl_match_hostname >= 3.5'], + ':python_version < "3.3"': ['backports.shutil_get_terminal_size >= 1.0.0', + 'ipaddress >= 1.0.16'], + ':sys_platform == "win32"': ['colorama >= 0.4'], + 'socks': ['PySocks >= 1.5.6, != 1.5.7'], }