File tree Expand file tree Collapse file tree
synthtool/gcp/templates/python_library Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -209,7 +209,9 @@ def unit(session):
209209def install_systemtest_dependencies(session, *constraints):
210210
211211 # Use pre-release gRPC for system tests.
212- session.install("--pre", "grpcio")
212+ # Exclude version 1.49.0rc1 which has a known issue.
213+ # See https://github.com/grpc/grpc/pull/30642
214+ session.install("--pre", "grpcio!=1.49.0rc1")
213215
214216 session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)
215217
@@ -379,7 +381,8 @@ def prerelease_deps(session):
379381 # dependency of grpc
380382 "six",
381383 "googleapis-common-protos",
382- "grpcio",
384+ # Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
385+ "grpcio!=1.49.0rc1",
383386 "grpcio-status",
384387 "google-api-core",
385388 "proto-plus",
You can’t perform that action at this time.
0 commit comments