File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
synthtool/gcp/templates/python_library Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,9 @@ def unit(session):
209
209
def install_systemtest_dependencies(session, *constraints):
210
210
211
211
# 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")
213
215
214
216
session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)
215
217
@@ -379,7 +381,8 @@ def prerelease_deps(session):
379
381
# dependency of grpc
380
382
"six",
381
383
"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",
383
386
"grpcio-status",
384
387
"google-api-core",
385
388
"proto-plus",
You can’t perform that action at this time.
0 commit comments