check_grpcio_tools.py
Go to the documentation of this file.
1 #!/usr/bin/env python3
2 
3 # Copyright 2015 gRPC authors.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 
17 import make_grpcio_tools as _make
18 
19 OUT_OF_DATE_MESSAGE = """file {} is out of date
20 
21 Have you called tools/distrib/python/make_grpcio_tools.py since upgrading protobuf?"""
22 
23 submodule_commit_hash = _make.protobuf_submodule_commit_hash()
24 
25 with open(_make.GRPC_PYTHON_PROTOC_LIB_DEPS, 'r') as _protoc_lib_deps_file:
26  content = _protoc_lib_deps_file.read().splitlines()
27 
28 testString = (_make.COMMIT_HASH_PREFIX + submodule_commit_hash +
29  _make.COMMIT_HASH_SUFFIX)
30 
31 if testString not in content:
32  print(OUT_OF_DATE_MESSAGE.format(_make.GRPC_PYTHON_PROTOC_LIB_DEPS))
33  raise SystemExit(1)
open
#define open
Definition: test-fs.c:46


grpc
Author(s):
autogenerated on Thu Mar 13 2025 02:58:45