8000 Upgrade a few dependencies. Doing this incrementally! by vincent-4 · Pull Request #155 · lotus-data/lotus · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Upgrade a few dependencies. Doing this incrementally! #155

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 11 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ repos:
args: ["--config-file", "mypy.ini"]
additional_dependencies:
- types-setuptools
- litellm>=1.51.0
- numpy>=1.25.0
- pandas>=2.0.0
- sentence-transformers>=3.0.1
- tiktoken>=0.7.0
- litellm>=1.63.2
- numpy>=2.2.3
- pandas>=2.2.3
- sentence-transformers>=3.4.1
- tiktoken>=0.9.0
- tqdm>=4.66.4
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ If you are running on mac, please install Faiss via conda:

### CPU-only version
```
conda install -c pytorch faiss-cpu=1.8.0
conda install -c pytorch faiss-cpu=1.10.0
```

### GPU(+CPU) version
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ If you are running on mac, please install Faiss via conda:
.. code-block:: console

# CPU-only version
$ conda install -c pytorch faiss-cpu=1.8.0
$ conda install -c pytorch faiss-cpu=11.10.0

# GPU(+CPU) version
$ conda install -c pytorch -c nvidia faiss-gpu=1.8.0
$ conda install -c pytorch -c nvidia faiss-gpu=1.10.0

For more details, see `Installing FAISS via Conda <https://github.com/facebookresearch/faiss/blob/main/INSTALL.md#installing-faiss-via-conda>`_.
12 changes: 6 additions & 6 deletions docs/requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ sphinx==7.3.7
sphinx-rtd-theme==2.0.0

backoff==2.2.1
faiss-cpu==1.8.0.post1
litellm==1.51.0
numpy==1.26.4
pandas==2.2.2
sentence-transformers==3.0.1
tiktoken==0.7.0
faiss-cpu==1.10.0
litellm==1.63.2
numpy==2.2.3
pandas==2.2.3
sentence-transformers==3.4.1
tiktoken==0.9.0
tqdm==4.66.4
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ classifiers = [

dependencies = [
"backoff>=2.2.1,<3.0.0",
"faiss-cpu>=1.8.0.post1,<2.0.0",
"litellm>=1.51.0,<2.0.0",
"numpy>=1.25.0,<2.0.0",
"pandas>=2.0.0,<3.0.0",
"sentence-transformers>=3.0.1,<4.0.0",
"tiktoken>=0.7.0,<1.0.0",
"faiss-cpu>=1.10.0,<2.0.0",
"litellm>=1.63.2,<2.0.0",
"numpy>=2.2.3,<3.0.0",
"pandas>=2.2.3,<3.0.0",
"sentence-transformers>=3.4.1,<4.0.0",
"tiktoken>=0.9.0,<1.0.0",
"tqdm>=4.66.4,<5.0.0",
]

Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
backoff==2.2.1
faiss-cpu==1.8.0.post1
litellm==1.51.0,<2.0.0
numpy==1.26.4
pandas==2.2.2
sentence-transformers==3.0.1
tiktoken==0.7.0
faiss-cpu==1.10.0
litellm==1.63.2,<2.0.0
numpy==2.2.3
pandas==2.2.3
sentence-transformers==3.4.1
tiktoken==0.9.0
tqdm==4.66.4
Loading
0