Skip to content

Commit e574222

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

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.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

noxfile.py

+6-8
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ def unit(session):
196196
def install_systemtest_dependencies(session, *constraints):
197197

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

203203
session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)
204204

@@ -437,9 +437,7 @@ def prerelease_deps(session):
437437
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
438438
session.install(*unit_deps_all)
439439
system_deps_all = (
440-
SYSTEM_TEST_STANDARD_DEPENDENCIES
441-
+ SYSTEM_TEST_EXTERNAL_DEPENDENCIES
442-
+ SYSTEM_TEST_EXTRAS
440+
SYSTEM_TEST_STANDARD_DEPENDENCIES + SYSTEM_TEST_EXTERNAL_DEPENDENCIES
443441
)
444442
session.install(*system_deps_all)
445443

@@ -469,8 +467,8 @@ def prerelease_deps(session):
469467
# dependency of grpc
470468
"six",
471469
"googleapis-common-protos",
472-
# Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
473-
"grpcio!=1.49.0rc1",
470+
# Exclude version 1.52.0rc1 which has a known issue. See https://github.com/grpc/grpc/issues/32163
471+
"grpcio!=1.52.0rc1",
474472
"grpcio-status",
475473
"google-api-core",
476474
"proto-plus",

0 commit comments

Comments
 (0)