Skip to content

Commit

Permalink
dependencies: ignore broken pypi combination (#3043)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarnphm committed Sep 27, 2022
1 parent 40c9cd0 commit ce99e45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyproject.toml
Expand Up @@ -103,10 +103,12 @@ io-pandas = ["pandas", "pyarrow"]
grpc = [
# Restrict maximum version due to breaking protobuf 4.21.0 changes
# (see https://github.com/protocolbuffers/protobuf/issues/10051)
# 3.19.5 is currently breaking on a lot of system.
"protobuf>=3.5.0, <3.20, !=3.19.5",
# Lowest version that support 3.10. We need to set an upper bound
# since grpcio >=1.49.0 uses protbuf >=3.20.0, which breaks compatibility.
"grpcio>=1.41.0, <1.49",
# We can't use 1.48.2 since it depends on 3.19.5
"grpcio>=1.41.0, <1.49, !=1.48.2",
"grpcio-health-checking",
"grpcio-reflection",
"opentelemetry-instrumentation-grpc==0.33b0",
Expand Down

0 comments on commit ce99e45

Please sign in to comment.