Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1 | From 15cf1a31f5af8f09531bb837b92bd6ea49bd1744 Mon Sep 17 00:00:00 2001 |
| 2 | From: Pascal Bach <pascal.bach@siemens.com> |
| 3 | Date: Wed, 13 Sep 2017 08:41:21 +0200 |
| 4 | Subject: [PATCH] Allow newer versions of requests |
| 5 | |
| 6 | docker compose has strict requirements to use requests < 2.12 |
| 7 | |
| 8 | However it works without issues with newer versions, so this patch removes the check. |
| 9 | |
| 10 | Upstream-Status: Pending |
| 11 | |
| 12 | Signed-off-by: Pascal Bach <pascal.bach@siemens.com> |
| 13 | --- |
| 14 | setup.py | 2 +- |
| 15 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 16 | |
| 17 | diff --git a/setup.py b/setup.py |
| 18 | index 192a0f6..f444757 100644 |
| 19 | --- a/setup.py |
| 20 | +++ b/setup.py |
| 21 | @@ -33,7 +33,7 @@ install_requires = [ |
| 22 | 'cached-property >= 1.2.0, < 2', |
| 23 | 'docopt >= 0.6.1, < 0.7', |
| 24 | 'PyYAML >= 3.10, < 4', |
| 25 | - 'requests >= 2.6.1, != 2.11.0, < 2.12', |
| 26 | + 'requests >= 2.6.1, != 2.11.0', |
| 27 | 'texttable >= 0.9.0, < 0.10', |
| 28 | 'websocket-client >= 0.32.0, < 1.0', |
| 29 | 'docker >= 2.5.1, < 3.0', |
| 30 | -- |
| 31 | 2.1.4 |
| 32 | |