Skip to content

Commit 47bb362

Browse files
authored
fix: pin grpcio / googleapis-common-protos under Python2 (#725)
Both dropped Python2 support in a minor release. grpcio does not declare 'python_requires'.
1 parent e8ea8ce commit 47bb362

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

packages/google-cloud-ndb/setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ def main():
2626
readme = readme_file.read()
2727
dependencies = [
2828
"google-cloud-datastore >= 1.7.0, < 2.0.0dev",
29+
"googleapis-common-protos < 1.53.0; python_version<'3.0'",
30+
"grpcio < 1.40dev; python_version<'3.0'",
31+
"protobuf < 3.18dev; python_version<'3.0'",
2932
"pymemcache",
3033
"redis",
3134
"pytz"

0 commit comments

Comments
 (0)