This is an automated email from the ASF dual-hosted git repository.
yhu 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 03e360cc083 Set upperbound for cloud bigtable client (#26717)
03e360cc083 is described below
commit 03e360cc083f40af335ac28dd73ae748e583b904
Author: Yi Hu <[email protected]>
AuthorDate: Tue May 16 13:40:14 2023 -0400
Set upperbound for cloud bigtable client (#26717)
---
sdks/python/setup.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/sdks/python/setup.py b/sdks/python/setup.py
index 309de273303..51269ffe4a5 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -313,7 +313,9 @@ if __name__ == '__main__':
'google-cloud-bigquery>=2.0.0,<4',
'google-cloud-bigquery-storage>=2.6.3,<3',
'google-cloud-core>=2.0.0,<3',
- 'google-cloud-bigtable>=2.0.0,<3,!=2.18.0',
+ # TODO(https://github.com/apache/beam/issues/26673)
+ # 2.18.x breaks unit test
+ 'google-cloud-bigtable>=2.0.0,<2.18.0',
'google-cloud-spanner>=3.0.0,<4',
# GCP Packages required by ML functionality
'google-cloud-dlp>=3.0.0,<4',