]> git.pld-linux.org Git - packages/docker-compose.git/blame_incremental - remove-requires-upper-bound.patch
up to 1.25.1
[packages/docker-compose.git] / remove-requires-upper-bound.patch
... / ...
CommitLineData
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,24 +1,23 @@
5-backports.ssl-match-hostname==3.5.0.1; python_version < '3'
6-cached-property==1.3.0
7-certifi==2017.4.17
8-chardet==3.0.4
9-colorama==0.4.0; sys_platform == 'win32'
10-docker==4.1.0
11-docker-pycreds==0.4.0
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'
16-idna==2.5
17-ipaddress==1.0.18
18-jsonschema==3.0.1
19-paramiko==2.6.0
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
23-PyYAML==4.2b1
24-requests==2.22.0
25-six==1.12.0
26-texttable==1.6.2
27-urllib3==1.24.2; python_version == '3.3'
28-websocket-client==0.32.0
29+backports.ssl-match-hostname; python_version < '3'
30+cached-property
31+certifi
32+chardet
33+colorama; sys_platform == 'win32'
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
43+paramiko
44+pypiwin32; sys_platform == 'win32'
45+PySocks
46+PyYAML
47+requests
48+six
49+texttable
50+urllib3; python_version == '3.3'
51+websocket-client
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
54@@ -30,16 +30,16 @@
55
56
57 install_requires = [
58- 'cached-property >= 1.2.0, < 2',
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',
66- 'six >= 1.3.0, < 2',
67- 'jsonschema >= 2.5.1, < 4',
68+ 'cached-property >= 1.2.0',
69+ 'docopt >= 0.6.1',
70+ 'PyYAML >= 3.10',
71+ 'requests >= 2.20.0',
72+ 'texttable >= 0.9.0',
73+ 'websocket-client >= 0.32.0',
74+ 'docker >= 3.7.0',
75+ 'dockerpty >= 0.4.1',
76+ 'six >= 1.3.0',
77+ 'jsonschema >= 2.5.1',
78 ]
79
80
81@@ -52,13 +52,13 @@
82 tests_require.append('mock >= 1.0.1, < 4')
83
84 extras_require = {
85- ':python_version < "3.2"': ['subprocess32 >= 3.5.4, < 4'],
86- ':python_version < "3.4"': ['enum34 >= 1.0.4, < 2'],
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'],
91- 'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'],
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'],
97+ ':sys_platform == "win32"': ['colorama >= 0.4'],
98+ 'socks': ['PySocks >= 1.5.6, != 1.5.7'],
99 }
100
101
This page took 0.044103 seconds and 4 git commands to generate.