Skip to content

Commit a5d6c80

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

2 files changed

Lines changed: 7 additions & 9 deletions

File tree

.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

noxfile.py

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

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

207207
session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)
208208

@@ -384,9 +384,7 @@ def prerelease_deps(session):
384384
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
385385
session.install(*unit_deps_all)
386386
system_deps_all = (
387-
SYSTEM_TEST_STANDARD_DEPENDENCIES
388-
+ SYSTEM_TEST_EXTERNAL_DEPENDENCIES
389-
+ SYSTEM_TEST_EXTRAS
387+
SYSTEM_TEST_STANDARD_DEPENDENCIES + SYSTEM_TEST_EXTERNAL_DEPENDENCIES
390388
)
391389
session.install(*system_deps_all)
392390

@@ -416,8 +414,8 @@ def prerelease_deps(session):
416414
# dependency of grpc
417415
"six",
418416
"googleapis-common-protos",
419-
# Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
420-
"grpcio!=1.49.0rc1",
417+
# Exclude version 1.52.0rc1 which has a known issue. See https://github.com/grpc/grpc/issues/32163
418+
"grpcio!=1.52.0rc1",
421419
"grpcio-status",
422420
"google-api-core",
423421
"proto-plus",

0 commit comments

Comments
 (0)