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/06/29 21:33:08 UTC

[1/3] incubator-beam git commit: Remove internal test config file

Repository: incubator-beam
Updated Branches:
  refs/heads/python-sdk 0545eb593 -> 5434e599b


Remove internal test config file


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

Branch: refs/heads/python-sdk
Commit: 436724e56bb85ffb1c3a2e1fed63168759ce545c
Parents: 0545eb5
Author: Silviu Calinoiu <si...@google.com>
Authored: Wed Jun 29 11:01:21 2016 -0700
Committer: Silviu Calinoiu <si...@google.com>
Committed: Wed Jun 29 11:01:21 2016 -0700

----------------------------------------------------------------------
 sdks/python/apache_beam/python_sdk_releases.py | 56 ---------------------
 1 file changed, 56 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/436724e5/sdks/python/apache_beam/python_sdk_releases.py
----------------------------------------------------------------------
diff --git a/sdks/python/apache_beam/python_sdk_releases.py b/sdks/python/apache_beam/python_sdk_releases.py
deleted file mode 100644
index 94a0308..0000000
--- a/sdks/python/apache_beam/python_sdk_releases.py
+++ /dev/null
@@ -1,56 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-"""Descriptions of the versions of the SDK.
-
-This manages the features and tests supported by different versions of the
-Dataflow SDK for Python.
-
-To add feature 'foo' to a particular release, add a 'properties' value with
-'feature_foo': True. To remove feature 'foo' from a particular release, add a
-'properties' value with 'feature_foo': False. Features are cumulative and can
-be added and removed multiple times.
-
-By default, all tests are enabled. To remove test 'bar' from a particular
-release, add a 'properties' value with 'test_bar': False. To add it back to a
-subsequent release, add a 'properties' value with 'test_bar': True. Tests are
-cumulative and can be removed and added multiple times.
-
-See go/dataflow-testing for more information.
-"""
-
-OLDEST_SUPPORTED_PYTHON_SDK = 'python-0.1.4'
-
-RELEASES = [
-    {'name': 'python-0.2.7',},
-    {'name': 'python-0.2.6',},
-    {'name': 'python-0.2.5',},
-    {'name': 'python-0.2.4',},
-    {'name': 'python-0.2.3',},
-    {'name': 'python-0.2.2',},
-    {'name': 'python-0.2.1',},
-    {'name': 'python-0.2.0',},
-    {'name': 'python-0.1.5',},
-    {'name': 'python-0.1.4',},
-    {'name': 'python-0.1.3',},
-    {'name': 'python-0.1.2',},
-    {'name': 'python-0.1.1',
-     'properties': {
-         'feature_python': True,
-     }
-    },
-]


[2/3] incubator-beam git commit: Fix gcsio.exists call

Posted by ro...@apache.org.
Fix gcsio.exists call


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

Branch: refs/heads/python-sdk
Commit: cead6457187963b9f62ce94d301c56b17510647e
Parents: 436724e
Author: Silviu Calinoiu <si...@google.com>
Authored: Wed Jun 29 12:07:59 2016 -0700
Committer: Silviu Calinoiu <si...@google.com>
Committed: Wed Jun 29 12:07:59 2016 -0700

----------------------------------------------------------------------
 sdks/python/apache_beam/io/fileio.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/cead6457/sdks/python/apache_beam/io/fileio.py
----------------------------------------------------------------------
diff --git a/sdks/python/apache_beam/io/fileio.py b/sdks/python/apache_beam/io/fileio.py
index 115bc0e..6475a34 100644
--- a/sdks/python/apache_beam/io/fileio.py
+++ b/sdks/python/apache_beam/io/fileio.py
@@ -213,7 +213,7 @@ class ChannelFactory(object):
     if path.startswith('gs://'):
       # pylint: disable=wrong-import-order, wrong-import-position
       from apache_beam.io import gcsio
-      return gcsio.GcsIO().exists()
+      return gcsio.GcsIO().exists(path)
     else:
       return os.path.exists(path)
 


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

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


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

Branch: refs/heads/python-sdk
Commit: 5434e599b21982197d610e8ba0564710a87a93e8
Parents: 0545eb5 cead645
Author: Robert Bradshaw <ro...@google.com>
Authored: Wed Jun 29 14:31:34 2016 -0700
Committer: Robert Bradshaw <ro...@google.com>
Committed: Wed Jun 29 14:31:34 2016 -0700

----------------------------------------------------------------------
 sdks/python/apache_beam/io/fileio.py           |  2 +-
 sdks/python/apache_beam/python_sdk_releases.py | 56 ---------------------
 2 files changed, 1 insertion(+), 57 deletions(-)
----------------------------------------------------------------------