Skip to content

Commit 22508dc

Browse files
committed
Adding sqlite-vec to default installation
Signed-off-by: jyejare <jyejare@redhat.com>
1 parent f76f5a3 commit 22508dc

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ dependencies = [
4343
"psutil",
4444
"bigtree>=0.19.2",
4545
"pyjwt",
46+
"sqlite-vec==v0.1.7a2",
4647
]
4748

4849
[project.optional-dependencies]
@@ -105,7 +106,6 @@ singlestore = ["singlestoredb<1.8.0"]
105106
snowflake = [
106107
"snowflake-connector-python[pandas]>=3.7,<4",
107108
]
108-
sqlite_vec = ["sqlite-vec==v0.1.6"]
109109

110110
ci = [
111111
"build",
@@ -150,7 +150,7 @@ ci = [
150150
"types-setuptools",
151151
"types-tabulate",
152152
"virtualenv<20.24.2",
153-
"feast[aws, azure, cassandra, couchbase, delta, docling, duckdb, elasticsearch, faiss, gcp, ge, go, grpcio, hazelcast, hbase, ibis, ikv, k8s, milvus, mssql, mysql, opentelemetry, spark, trino, postgres, pytorch, qdrant, redis, singlestore, snowflake, sqlite_vec]"
153+
"feast[aws, azure, cassandra, couchbase, delta, docling, duckdb, elasticsearch, faiss, gcp, ge, go, grpcio, hazelcast, hbase, ibis, ikv, k8s, milvus, mssql, mysql, opentelemetry, spark, trino, postgres, pytorch, qdrant, redis, singlestore, snowflake]"
154154
]
155155
nlp = ["feast[docling, milvus, pytorch]"]
156156
dev = ["feast[ci]"]

setup.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"psutil",
6060
"bigtree>=0.19.2",
6161
"pyjwt",
62+
"sqlite-vec==v0.1.7a2",
6263
]
6364

6465
GCP_REQUIRED = [
@@ -89,9 +90,6 @@
8990
"pyspark>=3.0.0,<4",
9091
]
9192

92-
SQLITE_VEC_REQUIRED = [
93-
"sqlite-vec==v0.1.6",
94-
]
9593
TRINO_REQUIRED = ["trino>=0.305.0,<0.400.0", "regex"]
9694

9795
POSTGRES_REQUIRED = [
@@ -232,7 +230,6 @@
232230
+ DUCKDB_REQUIRED
233231
+ DELTA_REQUIRED
234232
+ ELASTICSEARCH_REQUIRED
235-
+ SQLITE_VEC_REQUIRED
236233
+ SINGLESTORE_REQUIRED
237234
+ COUCHBASE_REQUIRED
238235
+ OPENTELEMETRY
@@ -312,7 +309,6 @@
312309
"ikv": IKV_REQUIRED,
313310
"delta": DELTA_REQUIRED,
314311
"elasticsearch": ELASTICSEARCH_REQUIRED,
315-
"sqlite_vec": SQLITE_VEC_REQUIRED,
316312
"singlestore": SINGLESTORE_REQUIRED,
317313
"couchbase": COUCHBASE_REQUIRED,
318314
"opentelemetry": OPENTELEMETRY,

0 commit comments

Comments
 (0)