You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by pa...@apache.org on 2018/07/03 22:50:40 UTC

[beam] branch master updated: Unpin GCP test requirement

This is an automated email from the ASF dual-hosted git repository.

pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new fba5e89  Unpin GCP test requirement
fba5e89 is described below

commit fba5e89820b9cab3fa63502030fd465aecf60556
Author: Luis Osa <lu...@gmail.com>
AuthorDate: Tue Jul 3 14:41:31 2018 +0200

    Unpin GCP test requirement
    
    Keeping the `google-cloud-bigquery` dependency pinned to a version prevents this packages from being installable alongside `google-cloud-bigquery` in a more recent version. Since the comment above the dependency states that it is only needed for tests, I would guess that this SDK can work with newer versions.
---
 sdks/python/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/python/setup.py b/sdks/python/setup.py
index a174ced..c8088eb 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -128,7 +128,7 @@ GCP_REQUIREMENTS = [
     'google-cloud-pubsub==0.26.0',
     'proto-google-cloud-pubsub-v1==0.15.4',
     # GCP packages required by tests
-    'google-cloud-bigquery==0.25.0',
+    'google-cloud-bigquery',
 ]