Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
patch upperbound limit for protobuf generation
Signed-off-by: HaoXuAI <sduxuhao@gmail.com>
  • Loading branch information
HaoXuAI committed May 1, 2025
commit 884c549883e56efaebba69f9b1bfd545a33e27c7
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ gcp = [
ge = ["great_expectations>=0.15.41,<1"]
go = ["cffi>=1.15.0"]
grpcio = [
"grpcio>=1.56.2,<2",
"grpcio-reflection>=1.56.2,<2",
"grpcio-health-checking>=1.56.2,<2",
"grpcio>=1.56.2,<=1.62.3",
"grpcio-reflection>=1.56.2,<=1.62.3",
"grpcio-health-checking>=1.56.2,<=1.62.3",
]
hazelcast = ["hazelcast-python-client>=5.1"]
hbase = ["happybase>=1.2.0,<3"]
Expand Down Expand Up @@ -123,8 +123,8 @@ ci = [
"cryptography>=43.0,<44",
"ruff>=0.8.0",
"mypy-protobuf>=3.1",
"grpcio-tools>=1.56.2,<2",
"grpcio-testing>=1.56.2,<2",
"grpcio-tools>=1.56.2,<=1.62.3",
"grpcio-testing>=1.56.2,<=1.62.3",
# FastAPI does not correctly pull starlette dependency on httpx see thread(https://github.com/tiangolo/fastapi/issues/5656).
"httpx==0.27.2",
"minio==7.2.11",
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@
]

GRPCIO_REQUIRED = [
"grpcio>=1.56.2,<2",
"grpcio-reflection>=1.56.2,<2",
"grpcio-health-checking>=1.56.2,<2",
"grpcio>=1.56.2,<=1.62.3",
"grpcio-reflection>=1.56.2,<=1.62.3",
"grpcio-health-checking>=1.56.2,<=1.62.3",
]

DUCKDB_REQUIRED = ["ibis-framework[duckdb]>=9.0.0,<10"]
Expand Down