ports/sysutils/docker-compose/files/patch-setup.py
Nikolai Lifanov bc1c316b67 fix sysutils/docker-compose by relaxing requirements
Make setup.py satisfiable by API-compatible versions
we have in ports.

References:
https://github.com/docker/compose/issues/4848
https://bugzilla.redhat.com/show_bug.cgi?id=1452999

PR:		221744
Reported by:	decke
2017-08-23 16:44:23 +00:00

13 lines
446 B
Python

--- setup.py.orig 2017-07-25 23:05:03 UTC
+++ setup.py
@@ -34,8 +34,8 @@ install_requires = [
'colorama >= 0.3.7, < 0.4',
'docopt >= 0.6.1, < 0.7',
'PyYAML >= 3.10, < 4',
- 'requests >= 2.6.1, != 2.11.0, < 2.12',
- 'texttable >= 0.8.1, < 0.9',
+ 'requests >= 2.6.1, != 2.11.0, < 3',
+ 'texttable >= 0.8.1, < 1',
'websocket-client >= 0.32.0, < 1.0',
'docker >= 2.4.2, < 3.0',
'dockerpty >= 0.4.1, < 0.5',