Skip to content

Commit

Permalink
loosen core dep to tolerate 0.2 (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored May 14, 2024
1 parent 53d2719 commit c1a52fa
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 67 deletions.
116 changes: 52 additions & 64 deletions libs/weaviate/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions libs/weaviate/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license = "MIT"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
langchain-core = "^0.1.33"
langchain-core = ">=0.1.33,<0.3"
weaviate-client = "^4.0.0"
numpy = "^1.26.2"
simsimd = ">=3.6.1,<5.0.0"
Expand All @@ -27,7 +27,8 @@ pytest-mock = "^3.10.0"
syrupy = "^4.0.2"
pytest-watcher = ">=0.3.4,<0.5.0"
pytest-asyncio = ">=0.21.1,<0.24.0"
langchain = "^0.1.8"
langchain = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/langchain"}
langchain-text-splitters = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/text-splitters"}
pytest-docker = ">=2.0.1,<4.0.0"
pytest-xdist = "^3.5.0"
openai = "^1.6.0"
Expand Down Expand Up @@ -63,7 +64,7 @@ langchain-core = {git = "https://github.com/langchain-ai/langchain.git", subdire
optional = true

[tool.poetry.group.test_integration.dependencies]
langchain-openai = ">=0.0.3,<0.2"
langchain-openai = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/partners/openai"}

[tool.ruff]
lint.select = [
Expand Down

0 comments on commit c1a52fa

Please sign in to comment.