Skip to content

Commit

Permalink
feat: Update sqlite-vec package (feast-dev#4389)
Browse files Browse the repository at this point in the history
* docs: Adding some content about the push vs pull model

Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>

* feat: Updating SQLite-Vec to stable release version:

Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>

* removing push model changes from other branch

Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>

---------

Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
  • Loading branch information
franciscojavierarceo authored and shuchu committed Aug 14, 2024
1 parent ee1144a commit 23be27e
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 17 deletions.
4 changes: 1 addition & 3 deletions sdk/python/requirements/py3.10-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,6 @@ googleapis-common-protos[grpc]==1.63.2
# grpcio-status
great-expectations==0.18.16
# via feast (setup.py)
greenlet==3.0.3
# via sqlalchemy
grpc-google-iam-v1==0.13.1
# via google-cloud-bigtable
grpcio==1.64.1
Expand Down Expand Up @@ -856,7 +854,7 @@ sqlalchemy[mypy]==2.0.31
# via feast (setup.py)
sqlglot==25.1.0
# via ibis-framework
sqlite-vec==0.0.1a10
sqlite-vec==0.1.1
# via feast (setup.py)
sqlparams==6.0.1
# via singlestoredb
Expand Down
2 changes: 0 additions & 2 deletions sdk/python/requirements/py3.10-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ fastapi-cli==0.0.2
# via fastapi
fsspec==2024.3.1
# via dask
greenlet==3.0.3
# via sqlalchemy
gunicorn==22.0.0
# via feast (setup.py)
h11==0.14.0
Expand Down
4 changes: 1 addition & 3 deletions sdk/python/requirements/py3.11-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,6 @@ googleapis-common-protos[grpc]==1.63.2
# grpcio-status
great-expectations==0.18.16
# via feast (setup.py)
greenlet==3.0.3
# via sqlalchemy
grpc-google-iam-v1==0.13.1
# via google-cloud-bigtable
grpcio==1.64.1
Expand Down Expand Up @@ -847,7 +845,7 @@ sqlalchemy[mypy]==2.0.31
# via feast (setup.py)
sqlglot==25.1.0
# via ibis-framework
sqlite-vec==0.0.1a10
sqlite-vec==0.1.1
# via feast (setup.py)
sqlparams==6.0.1
# via singlestoredb
Expand Down
2 changes: 0 additions & 2 deletions sdk/python/requirements/py3.11-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ fastapi-cli==0.0.2
# via fastapi
fsspec==2024.3.1
# via dask
greenlet==3.0.3
# via sqlalchemy
gunicorn==22.0.0
# via feast (setup.py)
h11==0.14.0
Expand Down
4 changes: 1 addition & 3 deletions sdk/python/requirements/py3.9-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,6 @@ googleapis-common-protos[grpc]==1.63.2
# grpcio-status
great-expectations==0.18.16
# via feast (setup.py)
greenlet==3.0.3
# via sqlalchemy
grpc-google-iam-v1==0.13.1
# via google-cloud-bigtable
grpcio==1.64.1
Expand Down Expand Up @@ -867,7 +865,7 @@ sqlalchemy[mypy]==2.0.31
# via feast (setup.py)
sqlglot==23.12.2
# via ibis-framework
sqlite-vec==0.0.1a10
sqlite-vec==0.1.1
# via feast (setup.py)
sqlparams==6.0.1
# via singlestoredb
Expand Down
2 changes: 0 additions & 2 deletions sdk/python/requirements/py3.9-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ fastapi-cli==0.0.2
# via fastapi
fsspec==2024.3.1
# via dask
greenlet==3.0.3
# via sqlalchemy
gunicorn==22.0.0
# via feast (setup.py)
h11==0.14.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ def test_sqlite_vec_import() -> None:
sqlite_version, vec_version = db.execute(
"select sqlite_version(), vec_version()"
).fetchone()
assert vec_version == "v0.0.1-alpha.10"
assert vec_version == "v0.1.1"
print(f"sqlite_version={sqlite_version}, vec_version={vec_version}")

result = db.execute("""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
]

SQLITE_VEC_REQUIRED = [
"sqlite-vec==v0.0.1-alpha.10",
"sqlite-vec==v0.1.1",
]
TRINO_REQUIRED = ["trino>=0.305.0,<0.400.0", "regex"]

Expand Down

0 comments on commit 23be27e

Please sign in to comment.