Skip to content

Commit 3202eeb

Browse files
committed
Adding sqlite-vec to default installation
Signed-off-by: jyejare <jyejare@redhat.com>
1 parent 86794c2 commit 3202eeb

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]
@@ -106,7 +107,6 @@ singlestore = ["singlestoredb<1.8.0"]
106107
snowflake = [
107108
"snowflake-connector-python[pandas]>=3.7,<4",
108109
]
109-
sqlite_vec = ["sqlite-vec==v0.1.6"]
110110

111111
ci = [
112112
"build",
@@ -151,7 +151,7 @@ ci = [
151151
"types-setuptools",
152152
"types-tabulate",
153153
"virtualenv<20.24.2",
154-
"feast[aws, azure, cassandra, clickhouse, 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]"
154+
"feast[aws, azure, cassandra, clickhouse, 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]"
155155
]
156156
nlp = ["feast[docling, milvus, pytorch]"]
157157
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 = [
@@ -234,7 +232,6 @@
234232
+ DUCKDB_REQUIRED
235233
+ DELTA_REQUIRED
236234
+ ELASTICSEARCH_REQUIRED
237-
+ SQLITE_VEC_REQUIRED
238235
+ SINGLESTORE_REQUIRED
239236
+ COUCHBASE_REQUIRED
240237
+ OPENTELEMETRY
@@ -315,7 +312,6 @@
315312
"ikv": IKV_REQUIRED,
316313
"delta": DELTA_REQUIRED,
317314
"elasticsearch": ELASTICSEARCH_REQUIRED,
318-
"sqlite_vec": SQLITE_VEC_REQUIRED,
319315
"singlestore": SINGLESTORE_REQUIRED,
320316
"couchbase": COUCHBASE_REQUIRED,
321317
"opentelemetry": OPENTELEMETRY,

0 commit comments

Comments
 (0)