1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
From 91cb802b9ddffb1351959b1c3797adc525595ea5 Mon Sep 17 00:00:00 2001
From: Tianon Gravi <tianon@debian.org>
Date: Sun, 8 Nov 2015 10:36:49 -0800
Subject: Unpin dependencies so newer versions satisfy them appropriately
Forwarded: https://github.com/dotcloud/docker-py/issues/101 (upstream has no interest)
Patch-Name: requirements.patch
---
docker_py.egg-info/requires.txt | 4 ++--
requirements.txt | 4 ++--
setup.py | 4 ++--
test-requirements.txt | 10 +++++-----
4 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/docker_py.egg-info/requires.txt b/docker_py.egg-info/requires.txt
index 43cfa6a..aa5b97e 100644
--- a/docker_py.egg-info/requires.txt
+++ b/docker_py.egg-info/requires.txt
@@ -1,3 +1,3 @@
-requests >= 2.5.2
+requests >= 2.5.3
six >= 1.4.0
-websocket-client >= 0.32.0
+websocket-client >= 0.18.0
diff --git a/requirements.txt b/requirements.txt
index 72c255d..cd79880 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,3 +1,3 @@
-requests==2.5.3
+requests>=2.5.3
six>=1.4.0
-websocket-client==0.32.0
+websocket-client>=0.18.0
diff --git a/setup.py b/setup.py
index 6d86163..f2af6b9 100644
--- a/setup.py
+++ b/setup.py
@@ -7,9 +7,9 @@ ROOT_DIR = os.path.dirname(__file__)
SOURCE_DIR = os.path.join(ROOT_DIR)
requirements = [
- 'requests >= 2.5.2',
+ 'requests >= 2.5.3',
'six >= 1.4.0',
- 'websocket-client >= 0.32.0',
+ 'websocket-client >= 0.18.0',
]
exec(open('docker/version.py').read())
diff --git a/test-requirements.txt b/test-requirements.txt
index be49988..45b2b38 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1,5 +1,5 @@
-mock==1.0.1
-pytest==2.7.2
-coverage==3.7.1
-pytest-cov==2.1.0
-flake8==2.4.1
\ No newline at end of file
+mock>=1.0.1
+pytest>=2.7.2
+coverage>=3.7.1
+pytest-cov>=2.1.0
+flake8>=2.4.1
|