community: Updated Chroma version range to include 0.5.0 release (#21224)

- Updated Chroma version range to allow releases in 0.5.x.
- Bumped mypy version as linting was failing
pull/21347/head
Trayan Azarov 5 months ago committed by GitHub
parent e65652c3e8
commit 93226b1945
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

File diff suppressed because it is too large Load Diff

@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-chroma"
version = "0.1.0"
version = "0.1.1"
description = "An integration package connecting Chroma and LangChain"
authors = []
readme = "README.md"
@ -13,7 +13,7 @@ license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.13"
langchain-core = "^0.1.40"
chromadb = { version = "^0.4.0" }
chromadb = { version = ">=0.4.0,<0.6.0" }
numpy = "^1"
fastapi = { version = ">=0.95.2,<1", optional = true }
@ -49,7 +49,7 @@ optional = true
ruff = "^0.1.5"
[tool.poetry.group.typing.dependencies]
mypy = "^0.991"
mypy = "^1.10.0"
langchain-core = { path = "../../core", develop = true }
langchain-community = { path = "../../community", develop = true }
types-requests = "^2.31.0.20240406"

Loading…
Cancel
Save