File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
docker :
15
15
image : gcr.io/cloud-devrel-public-resources/owlbot-python:latest
16
- digest : sha256:60a63eddf86c87395b4bb394fdddfe30f84a7726ee8fe0b758ea132c2106ac75
17
- # created: 2022-08-24T19:47:37.288818056Z
16
+ digest : sha256:ce3c1686bc81145c81dd269bd12c4025c6b275b22d14641358827334fddb1d72
17
+ # created: 2022-08-29T17:28:30.441852797Z
Original file line number Diff line number Diff line change @@ -136,9 +136,9 @@ cryptography==37.0.4 \
136
136
# via
137
137
# gcp-releasetool
138
138
# 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
142
142
# via virtualenv
143
143
docutils == 0.19 \
144
144
--hash =sha256:33995a6753c30b7f577febfc2c50411fec6aac7f7ffeb7c4cfe5991072dcf9e6 \
Original file line number Diff line number Diff line change @@ -214,7 +214,9 @@ def unit(session):
214
214
def install_systemtest_dependencies (session , * constraints ):
215
215
216
216
# Use pre-release gRPC for system tests.
217
- session .install ("--pre" , "grpcio" )
217
+ # Exclude version 1.49.0rc1 which has a known issue.
218
+ # See https://github.com/grpc/grpc/pull/30642
219
+ session .install ("--pre" , "grpcio!=1.49.0rc1" )
218
220
219
221
session .install (* SYSTEM_TEST_STANDARD_DEPENDENCIES , * constraints )
220
222
@@ -521,7 +523,8 @@ def prerelease_deps(session):
521
523
# dependency of grpc
522
524
"six" ,
523
525
"googleapis-common-protos" ,
524
- "grpcio" ,
526
+ # Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
527
+ "grpcio!=1.49.0rc1" ,
525
528
"grpcio-status" ,
526
529
"google-api-core" ,
527
530
"proto-plus" ,
You can’t perform that action at this time.
0 commit comments