chore: update vectordb version and requirements

This commit is contained in:
Joan Fontanals Martinez 2023-07-10 11:13:02 +02:00
parent ad507a6d68
commit 8e9422679d
4 changed files with 3 additions and 9 deletions

View File

@ -8,6 +8,4 @@ COPY . /vectordb/
RUN cd /vectordb && pip install -U pip && pip install .
RUN pip install -U docarray[hnswlib]>=0.34
ENTRYPOINT ["vectordb"]

View File

@ -1,3 +1,2 @@
jina>=3.18.0
click
#docarray[hnswlib]>=0.34.0
jina>=3.19.0
docarray[hnswlib]>=0.34.0

View File

@ -54,6 +54,3 @@ setup(
},
install_requires=requirements,
)
import subprocess
subprocess.run(['pip', 'install', 'docarray[hnswlib]>=0.34.0'])

View File

@ -1,4 +1,4 @@
__version__ = '0.0.3'
__version__ = '0.0.4'
from vectordb.db.inmemory_exact_vectordb import InMemoryExactNNVectorDB
from vectordb.db.hnsw_vectordb import HNSWVectorDB