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 Jul 6, 2023. It is now read-only.

Commit d4753fc

Browse filesBrowse files
chore(python): exclude grpcio==1.49.0rc1 in tests (#109)
Source-Link: googleapis/synthtool@c4dd595 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:ce3c1686bc81145c81dd269bd12c4025c6b275b22d14641358827334fddb1d72 Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 45dc7f4 commit d4753fc
Copy full SHA for d4753fc

File tree

Expand file treeCollapse file tree

3 files changed

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

3 files changed

+10
-7
lines changed

‎.github/.OwlBot.lock.yaml

Copy file name to clipboardExpand all lines: .github/.OwlBot.lock.yaml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest
16-
digest: sha256:562802bfac02e012a6ac34eda282f81d06e77326b82a32d7bbb1369ff552b387
17-
# created: 2022-08-24T17:07:22.006876712Z
16+
digest: sha256:ce3c1686bc81145c81dd269bd12c4025c6b275b22d14641358827334fddb1d72
17+
# created: 2022-08-29T17:28:30.441852797Z

‎.kokoro/requirements.txt

Copy file name to clipboardExpand all lines: .kokoro/requirements.txt
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ cryptography==37.0.4 \
136136
# via
137137
# gcp-releasetool
138138
# secretstorage
139-
distlib==0.3.5 \
140-
--hash=sha256:a7f75737c70be3b25e2bee06288cec4e4c221de18455b2dd037fe2a795cab2fe \
141-
--hash=sha256:b710088c59f06338ca514800ad795a132da19fda270e3ce4affc74abf955a26c
139+
distlib==0.3.6 \
140+
--hash=sha256:14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46 \
141+
--hash=sha256:f35c4b692542ca110de7ef0bea44d73981caeb34ca0b9b6b2e6d7790dda8f80e
142142
# via virtualenv
143143
docutils==0.19 \
144144
--hash=sha256:33995a6753c30b7f577febfc2c50411fec6aac7f7ffeb7c4cfe5991072dcf9e6 \

‎noxfile.py

Copy file name to clipboardExpand all lines: noxfile.py
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,9 @@ def unit(session):
189189
def install_systemtest_dependencies(session, *constraints):
190190

191191
# Use pre-release gRPC for system tests.
192-
session.install("--pre", "grpcio")
192+
# Exclude version 1.49.0rc1 which has a known issue.
193+
# See https://github.com/grpc/grpc/pull/30642
194+
session.install("--pre", "grpcio!=1.49.0rc1")
193195

194196
session.install(*SYSTEM_TEST_STANDARD_DEPENDENCIES, *constraints)
195197

@@ -369,7 +371,8 @@ def prerelease_deps(session):
369371
# dependency of grpc
370372
"six",
371373
"googleapis-common-protos",
372-
"grpcio",
374+
# Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
375+
"grpcio!=1.49.0rc1",
373376
"grpcio-status",
374377
"google-api-core",
375378
"proto-plus",

0 commit comments

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