You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ro...@apache.org on 2016/10/25 17:25:25 UTC

[2/3] incubator-beam git commit: Limit version ranges for dependencies in the 0.* version range

Limit version ranges for dependencies in the 0.* version range


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/8dd1bd8c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/8dd1bd8c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/8dd1bd8c

Branch: refs/heads/python-sdk
Commit: 8dd1bd8c4c8fd0bfc36915927f6625c9e326434c
Parents: b26cb65
Author: Ahmet Altay <al...@google.com>
Authored: Thu Oct 20 16:37:38 2016 -0700
Committer: Robert Bradshaw <ro...@google.com>
Committed: Tue Oct 25 10:24:32 2016 -0700

----------------------------------------------------------------------
 sdks/python/setup.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/8dd1bd8c/sdks/python/setup.py
----------------------------------------------------------------------
diff --git a/sdks/python/setup.py b/sdks/python/setup.py
index 4525828..9502f67 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -85,12 +85,12 @@ else:
 
 REQUIRED_PACKAGES = [
     'avro>=1.7.7,<2.0.0',
-    'dill>=0.2.5,<1.0.0',
+    'dill>=0.2.5,<0.3',
     'google-apitools>=0.5.2,<1.0.0',
-    'httplib2>=0.8,<1.0.0',
+    'httplib2>=0.8,<0.10',
     'mock>=1.0.1,<3.0.0',
     'oauth2client>=2.0.1,<4.0.0',
-    'protorpc>=0.9.1,<1.0.0',
+    'protorpc>=0.9.1,<0.12',
     'python-gflags>=2.0,<4.0.0',
     'pyyaml>=3.10,<4.0.0',
     ]