]> git.pld-linux.org Git - packages/docker-compose.git/blame - remove-requires-upper-bound.patch
- commit updated patch
[packages/docker-compose.git] / remove-requires-upper-bound.patch
CommitLineData
b030c146
JR
1diff -up docker-compose-1.15.0/requirements.txt.orig docker-compose-1.15.0/requirements.txt
2--- docker-compose-1.15.0/requirements.txt.orig 2017-07-25 19:05:04.000000000 -0400
3+++ docker-compose-1.15.0/requirements.txt 2017-07-28 18:25:47.282974273 -0400
4@@ -1,22 +1,22 @@
5-PySocks==1.6.7
6-PyYAML==3.12
7-backports.ssl-match-hostname==3.5.0.1; python_version < '3'
8-cached-property==1.3.0
9+PySocks
10+PyYAML
11+backports.ssl-match-hostname; python_version < '3'
12+cached-property
13 certifi==2017.4.17
14-chardet==3.0.4
15-colorama==0.3.9
16-docker==2.4.2
17-docker-pycreds==0.2.1
18-dockerpty==0.4.1
19-docopt==0.6.2
20-enum34==1.1.6; python_version < '3.4'
21-functools32==3.2.3.post2; python_version < '3.2'
22-idna==2.5
23-ipaddress==1.0.18
24-jsonschema==2.6.0
25-pypiwin32==219; sys_platform == 'win32'
26-requests==2.11.1
27-six==1.10.0
28-texttable==0.8.8
29-urllib3==1.21.1
30-websocket-client==0.32.0
31+chardet
32+colorama
33+docker
34+docker-pycreds
35+dockerpty
36+docopt
37+enum34; python_version < '3.4'
38+functools32; python_version < '3.2'
39+idna
40+ipaddress
41+jsonschema
42+pypiwin32; sys_platform == 'win32'
43+requests
44+six
45+texttable
46+urllib3
47+websocket-client
48diff -up docker-compose-1.15.0/setup.py.orig docker-compose-1.15.0/setup.py
49--- docker-compose-1.15.0/setup.py.orig 2017-07-25 19:05:03.000000000 -0400
50+++ docker-compose-1.15.0/setup.py 2017-07-28 18:19:22.561055698 -0400
51@@ -30,17 +30,17 @@ def find_version(*file_paths):
a4a04e42
ER
52
53
b030c146
JR
54 install_requires = [
55- 'cached-property >= 1.2.0, < 2',
56- 'colorama >= 0.3.7, < 0.4',
57- 'docopt >= 0.6.1, < 0.7',
58- 'PyYAML >= 3.10, < 4',
59- 'requests >= 2.6.1, != 2.11.0, < 2.12',
60- 'texttable >= 0.8.1, < 0.9',
61- 'websocket-client >= 0.32.0, < 1.0',
62- 'docker >= 2.4.2, < 3.0',
63- 'dockerpty >= 0.4.1, < 0.5',
64- 'six >= 1.3.0, < 2',
65- 'jsonschema >= 2.5.1, < 3',
66+ 'cached-property >= 1.2.0',
67+ 'colorama >= 0.3.7',
68+ 'docopt >= 0.6.1',
69+ 'PyYAML >= 3.10',
70+ 'requests >= 2.6.1, != 2.11.0',
71+ 'texttable >= 0.8.1',
72+ 'websocket-client >= 0.32.0',
73+ 'docker >= 2.4.2',
74+ 'dockerpty >= 0.4.1',
75+ 'six >= 1.3.0',
76+ 'jsonschema >= 2.5.1',
77 ]
78
a4a04e42 79
This page took 0.066922 seconds and 4 git commands to generate.