Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

Commit cca4018

Browse filesBrowse files
chore: fix prerelease_deps nox session [autoapprove] (#468)
Source-Link: https://togithub.com/googleapis/synthtool/commit/26c7505b2f76981ec1707b851e1595c8c06e90fc Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:f946c75373c2b0040e8e318c5e85d0cf46bc6e61d0a01f3ef94d8de974ac6790
1 parent 2ba414c commit cca4018
Copy full SHA for cca4018

File tree

Expand file treeCollapse file tree

2 files changed

+7
-9
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+7
-9
lines changed

‎.github/.OwlBot.lock.yaml

Copy file name to clipboardExpand all lines: .github/.OwlBot.lock.yaml
+1-1Lines 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

Copy file name to clipboardExpand all lines: noxfile.py
+6-8Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ def unit(session):
194194
def install_systemtest_dependencies(session, *constraints):
195195

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

201201
session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)
202202

@@ -351,9 +351,7 @@ def prerelease_deps(session):
351351
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
352352
session.install(*unit_deps_all)
353353
system_deps_all = (
354-
SYSTEM_TEST_STANDARD_DEPENDENCIES
355-
+ SYSTEM_TEST_EXTERNAL_DEPENDENCIES
356-
+ SYSTEM_TEST_EXTRAS
354+
SYSTEM_TEST_STANDARD_DEPENDENCIES + SYSTEM_TEST_EXTERNAL_DEPENDENCIES
357355
)
358356
session.install(*system_deps_all)
359357

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

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.