Skip to content

Commit

Permalink
📌 Loosen dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
redadmiral committed Nov 22, 2024
1 parent fe1827a commit 5a258cb
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 24 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ by considering the max_new_tokens param in the `fit_to_context_window()` method.

## 0.1.5 -> 0.1.5.1
- Make dependencies a bit more forgiving.

## 0.1.5 -> 0.1.5.2
- Fix typo and make versions allow all versions greater than.
48 changes: 24 additions & 24 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "brdata-rag-tools"
version = "0.1.5.1"
version = "0.1.5.2"
authors = [
{ name = "Marco Lehner", email = "[email protected]" },
]
Expand All @@ -22,30 +22,30 @@ dependencies = [
"aenum>=3.1.15",
"annotated-types>=0.6.0",
"anyio>=4.2.0",
"certifi<=2023.11.17",
"charset-normalizer<=3.3.2",
"distro<=1.9.0",
"exceptiongroup<=1.2.0",
"faiss-cpu<=1.7.4",
"greenlet<=3.0.3",
"h11<=0.14.0",
"httpcore<=1.0.2",
"httpx<=0.26.0",
"idna<=3.6",
"numpy<=1.26.3",
"openai<=1.7.0",
"certifi>=2023.11.17",
"charset-normalizer>=3.3.2",
"distro>=1.9.0",
"exceptiongroup>=1.2.0",
"faiss-cpu>=1.7.4",
"greenlet>=3.0.3",
"h11>=0.14.0",
"httpcore>=1.0.2",
"httpx>=0.26.0",
"idna>=3.6",
"numpy>=1.26.3",
"openai>=1.7.0",
"pgvector>=0.2.4",
"psycopg2-binary<=2.9.9",
"pydantic<=2.5.3",
"pydantic_core<=2.14.6",
"regex<=2023.12.25",
"requests<=2.31.0",
"sniffio<=1.3.0",
"SQLAlchemy<=2.0.25",
"tiktoken<=0.5.2",
"tqdm<=4.66.1",
"typing_extensions<=4.9.0",
"urllib3<=2.1.0"
"psycopg2-binary>=2.9.9",
"pydantic>=2.5.3",
"pydantic_core>=2.14.6",
"regex>=2023.12.25",
"requests>=2.31.0",
"sniffio>=1.3.0",
"SQLAlchemy>=2.0.25",
"tiktoken>=0.5.2",
"tqdm>=4.66.1",
"typing_extensions>=4.9.0",
"urllib3>=2.1.0"
]

[project.urls]
Expand Down

0 comments on commit 5a258cb

Please sign in to comment.