Skip to content

Commit 7b982b8

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

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

packages/google-cloud-monitoring/.github/.OwlBot.lock.yaml

Lines changed: 1 addition & 1 deletion
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

packages/google-cloud-monitoring/noxfile.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ def unit(session):
192192
def install_systemtest_dependencies(session, *constraints):
193193

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

199199
session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)
200200

@@ -349,9 +349,7 @@ def prerelease_deps(session):
349349
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
350350
session.install(*unit_deps_all)
351351
system_deps_all = (
352-
SYSTEM_TEST_STANDARD_DEPENDENCIES
353-
+ SYSTEM_TEST_EXTERNAL_DEPENDENCIES
354-
+ SYSTEM_TEST_EXTRAS
352+
SYSTEM_TEST_STANDARD_DEPENDENCIES + SYSTEM_TEST_EXTERNAL_DEPENDENCIES
355353
)
356354
session.install(*system_deps_all)
357355

@@ -381,8 +379,8 @@ def prerelease_deps(session):
381379
# dependency of grpc
382380
"six",
383381
"googleapis-common-protos",
384-
# Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
385-
"grpcio!=1.49.0rc1",
382+
# Exclude version 1.52.0rc1 which has a known issue. See https://github.com/grpc/grpc/issues/32163
383+
"grpcio!=1.52.0rc1",
386384
"grpcio-status",
387385
"google-api-core",
388386
"proto-plus",

0 commit comments

Comments
 (0)