mirror of
https://github.com/php-win-ext/grpc.git
synced 2026-04-25 01:38:03 +02:00
7f332ef69d
The previous version (`3.12`) is 7 years old and does not support the newest Python 3 versions. This causes issues to move certain test targets (which depends on `pyyaml`) to Python 3 when some CI environment (e.g. `arm64v8/debian:11`) does not have Python 2 installed. And in general, we should move away from Python 2. Thus, updated `pyyaml` to the latest version. This hopefully should also fix the `prod:grpc/core/master/linux/arm64/grpc_bazel_test_c_cpp` job breakage. <!-- If you know who should review your pull request, please assign it to that person, otherwise the pull request would get assigned randomly. If your pull request is for a specific language, please add the appropriate lang label. -->
61 lines
1.4 KiB
Python
61 lines
1.4 KiB
Python
# Copyright 2017 gRPC authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
load("//bazel:grpc_build_system.bzl", "grpc_py_binary")
|
|
|
|
package(
|
|
default_visibility = ["//visibility:public"],
|
|
features = [
|
|
"-layering_check",
|
|
"-parse_headers",
|
|
],
|
|
)
|
|
|
|
licenses(["notice"])
|
|
|
|
grpc_py_binary(
|
|
name = "dns_server",
|
|
testonly = True,
|
|
srcs = ["dns_server.py"],
|
|
external_deps = [
|
|
"twisted",
|
|
"yaml",
|
|
],
|
|
python_version = "PY3",
|
|
)
|
|
|
|
grpc_py_binary(
|
|
name = "dns_resolver",
|
|
testonly = True,
|
|
srcs = ["dns_resolver.py"],
|
|
external_deps = [
|
|
"twisted",
|
|
],
|
|
python_version = "PY3",
|
|
)
|
|
|
|
grpc_py_binary(
|
|
name = "tcp_connect",
|
|
testonly = True,
|
|
srcs = ["tcp_connect.py"],
|
|
python_version = "PY3",
|
|
)
|
|
|
|
grpc_py_binary(
|
|
name = "health_check",
|
|
testonly = True,
|
|
srcs = ["health_check.py"],
|
|
python_version = "PY3",
|
|
)
|