From c7c68fa5e1b60bd3696d0fb0909d9878805453bd Mon Sep 17 00:00:00 2001 From: Bashir Sadjad Date: Tue, 26 Jun 2018 18:20:53 -0400 Subject: [PATCH] Temporarily add <=2.4 for Beam version to fix the build --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 305a6b647..e960e32f2 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,8 @@ REQUIRED_PACKAGES = [ 'cython>=0.28.1', - 'apache-beam[gcp]>=2.3', + # TODO(bashir2): Drop the <=2.4 condition once the build is fixed with 2.5. + 'apache-beam[gcp]>=2.3,<=2.4', # Note that adding 'google-api-python-client>=1.6' causes some dependency # mismatch issues. This is fatal if using 'setup.py install', but works on # 'pip install .' as it ignores conflicting versions. See Issue #71.