[Python-modules-commits] [python-docker] 06/13: Unpin dependencies so newer versions satisfy them appropriately
Ondřej Nový
onovy at moszumanska.debian.org
Thu Sep 8 12:38:55 UTC 2016
This is an automated email from the git hooks/post-receive script.
onovy pushed a commit to branch master
in repository python-docker.
commit 5fcb828d4e26af57aaf443c1608f554f6e4c5d3d
Author: Tianon Gravi <tianon at debian.org>
Date: Sun Nov 8 10:36:49 2015 -0800
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 | 2 +-
requirements.txt | 6 +++---
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 111527c..c3febfb 100644
--- a/docker_py.egg-info/requires.txt
+++ b/docker_py.egg-info/requires.txt
@@ -1,4 +1,4 @@
-requests >= 2.5.2
+requests >= 2.5.3
six >= 1.4.0
websocket-client >= 0.32.0
diff --git a/requirements.txt b/requirements.txt
index a79b7bf..12b88f6 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,5 +1,5 @@
-requests==2.5.3
+requests>=2.5.3
six>=1.4.0
-websocket-client==0.32.0
+websocket-client>=0.32.0
backports.ssl_match_hostname>=3.5 ; python_version < '3.5'
-ipaddress==1.0.16 ; python_version < '3.3'
\ No newline at end of file
+ipaddress>=1.0.16 ; python_version < '3.3'
diff --git a/setup.py b/setup.py
index ac58b1f..f7c0443 100644
--- a/setup.py
+++ b/setup.py
@@ -9,9 +9,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',
]
if sys.platform == 'win32':
diff --git a/test-requirements.txt b/test-requirements.txt
index 460db10..9f9eb50 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -1,5 +1,5 @@
-mock==1.0.1
-pytest==2.9.1
-coverage==3.7.1
-pytest-cov==2.1.0
-flake8==2.4.1
+mock>=1.0.1
+pytest>=2.9.1
+coverage>=3.7.1
+pytest-cov>=2.1.0
+flake8>=2.4.1
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-docker.git
More information about the Python-modules-commits
mailing list