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:24 UTC

[1/3] incubator-beam git commit: Pin the version of dependencies

Repository: incubator-beam
Updated Branches:
  refs/heads/python-sdk 2b8d9f704 -> c37b89ec7


Pin the version of dependencies


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

Branch: refs/heads/python-sdk
Commit: b26cb651903dfaa6f5d4712abccad5ee82a783ac
Parents: 2b8d9f7
Author: Ahmet Altay <al...@google.com>
Authored: Thu Oct 20 11:08:58 2016 -0700
Committer: Robert Bradshaw <ro...@google.com>
Committed: Tue Oct 25 10:24:31 2016 -0700

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


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


[3/3] incubator-beam git commit: Closes #1148

Posted by ro...@apache.org.
Closes #1148


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

Branch: refs/heads/python-sdk
Commit: c37b89ec709d90c37b654d218192976e1cc0ef0f
Parents: 2b8d9f7 8dd1bd8
Author: Robert Bradshaw <ro...@google.com>
Authored: Tue Oct 25 10:24:32 2016 -0700
Committer: Robert Bradshaw <ro...@google.com>
Committed: Tue Oct 25 10:24:32 2016 -0700

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



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

Posted by ro...@apache.org.
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',
     ]