Skip to content

Commit a93df8a

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

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
@@ -285,9 +285,9 @@ def unit_prerelease(session):
285285
def install_systemtest_dependencies(session, *constraints):
286286

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

292292
session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)
293293

@@ -442,9 +442,7 @@ def prerelease_deps(session):
442442
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
443443
session.install(*unit_deps_all)
444444
system_deps_all = (
445-
SYSTEM_TEST_STANDARD_DEPENDENCIES
446-
+ SYSTEM_TEST_EXTERNAL_DEPENDENCIES
447-
+ SYSTEM_TEST_EXTRAS
445+
SYSTEM_TEST_STANDARD_DEPENDENCIES + SYSTEM_TEST_EXTERNAL_DEPENDENCIES
448446
)
449447
session.install(*system_deps_all)
450448

@@ -474,8 +472,8 @@ def prerelease_deps(session):
474472
# dependency of grpc
475473
"six",
476474
"googleapis-common-protos",
477-
# Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
478-
"grpcio!=1.49.0rc1",
475+
# Exclude version 1.52.0rc1 which has a known issue. See https://github.com/grpc/grpc/issues/32163
476+
"grpcio!=1.52.0rc1",
479477
"grpcio-status",
480478
"google-api-core",
481479
"proto-plus",

0 commit comments

Comments
 (0)