Skip to content

Commit

Permalink
chore: test minimum dependencies in python 3.7 (#19)
Browse files Browse the repository at this point in the history
* chore: test minimum dependencies in python 3.7

* fix(deps): require googleapis-common-protos>1.56.1
  • Loading branch information
parthea authored Jun 3, 2022
1 parent cd2d0d2 commit 69922e5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
5 changes: 3 additions & 2 deletions packages/google-cloud-run/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@
# Until this issue is closed
# https://github.com/googleapis/google-cloud-python/issues/10566
"google-api-core[grpc] >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
"proto-plus >= 1.15.0",
"googleapis-common-protos >= 1.56.0",
"proto-plus >= 1.15.0, <2.0.0dev",
"protobuf >= 3.19.0, <4.0.0dev",
"googleapis-common-protos >= 1.56.1, <2.0.0dev",
"grpc-google-iam-v1 >= 0.12.4, <1.0.0dev",
]

Expand Down
3 changes: 2 additions & 1 deletion packages/google-cloud-run/testing/constraints-3.6.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
# Then this file should have google-cloud-foo==1.14.0
google-api-core==1.31.5
proto-plus==1.15.0
googleapis-common-protos==1.56.0
googleapis-common-protos==1.56.1
grpc-google-iam-v1==0.12.4
protobuf==3.19.0
11 changes: 11 additions & 0 deletions packages/google-cloud-run/testing/constraints-3.7.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This constraints file is used to check that lower bounds
# are correct in setup.py
# List all library dependencies and extras in this file.
# Pin the version to the lower bound.
# e.g., if setup.py has "google-cloud-foo >= 1.14.0, < 2.0.0dev",
# Then this file should have google-cloud-foo==1.14.0
google-api-core==1.31.5
proto-plus==1.15.0
googleapis-common-protos==1.56.1
grpc-google-iam-v1==0.12.4
protobuf==3.19.0

0 comments on commit 69922e5

Please sign in to comment.