Skip to content

Commit 1a3f5e7

Browse files
chore(python): exclude grpcio==1.49.0rc1 in tests [autoapprove] (#432)
Source-Link: googleapis/synthtool@c4dd595 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:ce3c1686bc81145c81dd269bd12c4025c6b275b22d14641358827334fddb1d72
1 parent 78ab05d commit 1a3f5e7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/google-cloud-python-speech/noxfile.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ def unit(session):
188188
def install_systemtest_dependencies(session, *constraints):
189189

190190
# Use pre-release gRPC for system tests.
191-
session.install("--pre", "grpcio")
191+
# Exclude version 1.49.0rc1 which has a known issue.
192+
# See https://github.com/grpc/grpc/pull/30642
193+
session.install("--pre", "grpcio!=1.49.0rc1")
192194

193195
session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)
194196

@@ -368,7 +370,8 @@ def prerelease_deps(session):
368370
# dependency of grpc
369371
"six",
370372
"googleapis-common-protos",
371-
"grpcio",
373+
# Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
374+
"grpcio!=1.49.0rc1",
372375
"grpcio-status",
373376
"google-api-core",
374377
"proto-plus",

0 commit comments

Comments
 (0)