Skip to content

Commit

Permalink
chore(python): exclude grpcio==1.49.0rc1 in tests [autoapprove] (#432)
Browse files Browse the repository at this point in the history
Source-Link: googleapis/synthtool@c4dd595
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:ce3c1686bc81145c81dd269bd12c4025c6b275b22d14641358827334fddb1d72
  • Loading branch information
gcf-owl-bot[bot] authored Aug 29, 2022
1 parent 78ab05d commit 1a3f5e7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/google-cloud-python-speech/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ def unit(session):
def install_systemtest_dependencies(session, *constraints):

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

session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)

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

0 comments on commit 1a3f5e7

Please sign in to comment.