Skip to content

Commit 03450e2

Browse files
chore: fix prerelease_deps nox session [autoapprove] (googleapis#740)
Source-Link: https://togithub.com/googleapis/synthtool/commit/26c7505b2f76981ec1707b851e1595c8c06e90fc Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:f946c75373c2b0040e8e318c5e85d0cf46bc6e61d0a01f3ef94d8de974ac6790
1 parent 0675b1e commit 03450e2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: .github/.OwlBot.lock.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest
16-
digest: sha256:c43f1d918bcf817d337aa29ff833439494a158a0831508fda4ec75dc4c0d0320
16+
digest: sha256:f946c75373c2b0040e8e318c5e85d0cf46bc6e61d0a01f3ef94d8de974ac6790

Diff for: noxfile.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ def unit(session):
212212
def install_systemtest_dependencies(session, *constraints):
213213

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

219219
session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)
220220

@@ -459,8 +459,8 @@ def prerelease_deps(session):
459459
# dependency of grpc
460460
"six",
461461
"googleapis-common-protos",
462-
# Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
463-
"grpcio!=1.49.0rc1",
462+
# Exclude version 1.52.0rc1 which has a known issue. See https://github.com/grpc/grpc/issues/32163
463+
"grpcio!=1.52.0rc1",
464464
"grpcio-status",
465465
"google-api-core",
466466
"proto-plus",

0 commit comments

Comments
 (0)