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
Remove limit of ibis-framework for all other feast main dependencies
Signed-off-by: jyejare <jyejare@redhat.com>
  • Loading branch information
jyejare authored and ntkathole committed Jan 16, 2026
commit 55dd322643efacfe9c7320f17350e50e0233ba17
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ grpcio = [
hazelcast = ["hazelcast-python-client>=5.1"]
hbase = ["happybase>=1.2.0,<3"]
ibis = [
"ibis-framework>=9.0.0,<=9.5.0",
"ibis-framework>=9.0.0",
"ibis-substrait>=4.0.0",
"substrait<0.25.0", # TODO: remove this once we upgrade protobuf
"poetry-core<2",
Expand All @@ -103,7 +103,7 @@ milvus = [
"milvus-lite==2.4.12",
"feast[setuptools]"
]
mssql = ["ibis-framework[mssql]>=9.0.0,<=9.5.0"]
mssql = ["ibis-framework[mssql]>=9.0.0"]
mysql = ["pymysql", "types-PyMySQL"]
opentelemetry = ["prometheus_client", "psutil"]
spark = ["pyspark>=4.0.0"]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
]

IBIS_REQUIRED = [
"ibis-framework>=9.0.0,<10",
"ibis-framework>=9.0.0",
"ibis-substrait>=4.0.0",
"substrait<0.25.0", # TODO: remove this once we upgrade protobuf
]
Expand All @@ -158,7 +158,7 @@
"couchbase-columnar==1.0.0"
]

MSSQL_REQUIRED = ["ibis-framework[mssql]>=9.0.0,<10"]
MSSQL_REQUIRED = ["ibis-framework[mssql]>=9.0.0"]

FAISS_REQUIRED = ["faiss-cpu>=1.7.0,<=1.10.0"]
QDRANT_REQUIRED = ["qdrant-client>=1.12.0"]
Expand Down