Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dependencies: ignore broken pypi combination #3043

Merged
merged 3 commits into from Sep 27, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions pyproject.toml
Expand Up @@ -40,7 +40,7 @@ dependencies = [
"opentelemetry-instrumentation-aiohttp-client==0.33b0",
"opentelemetry-instrumentation-asgi==0.33b0",
"opentelemetry-sdk>=1.9.0",
"opentelemetry-semantic-conventions==0.33b0",
"opentelemetry-semantic-conventions==0.34b0",
aarnphm marked this conversation as resolved.
Show resolved Hide resolved
"opentelemetry-util-http==0.33b0",
"packaging>=20.0",
"pathspec",
Expand Down 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