From 283dfdc491dfcf21cec1e92416103435b70bb8a2 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Tue, 9 Apr 2024 16:07:27 -0700 Subject: [PATCH] ci: add master core install for lint/test/dev --- libs/weaviate/poetry.lock | 27 ++++++++++++++++----------- libs/weaviate/pyproject.toml | 3 +++ 2 files changed, 19 insertions(+), 11 deletions(-) diff --git a/libs/weaviate/poetry.lock b/libs/weaviate/poetry.lock index cac4ecf..473d640 100644 --- a/libs/weaviate/poetry.lock +++ b/libs/weaviate/poetry.lock @@ -1309,26 +1309,31 @@ extended-testing = ["aiosqlite (>=0.19.0,<0.20.0)", "aleph-alpha-client (>=2.15. [[package]] name = "langchain-core" -version = "0.1.40" +version = "0.1.41" description = "Building applications with LLMs through composability" optional = false -python-versions = "<4.0,>=3.8.1" -files = [ - {file = "langchain_core-0.1.40-py3-none-any.whl", hash = "sha256:618dbb7ab44d8b263b91e384db1ff07d0db256ae5bdafa0123a115b6a75a13f1"}, - {file = "langchain_core-0.1.40.tar.gz", hash = "sha256:34c06fc0e6d3534b738c63f85403446b4be71161665b7e091f9bb19c914ec100"}, -] +python-versions = ">=3.8.1,<4.0" +files = [] +develop = false [package.dependencies] -jsonpatch = ">=1.33,<2.0" -langsmith = ">=0.1.0,<0.2.0" -packaging = ">=23.2,<24.0" +jsonpatch = "^1.33" +langsmith = "^0.1.0" +packaging = "^23.2" pydantic = ">=1,<3" PyYAML = ">=5.3" -tenacity = ">=8.1.0,<9.0.0" +tenacity = "^8.1.0" [package.extras] extended-testing = ["jinja2 (>=3,<4)"] +[package.source] +type = "git" +url = "https://github.com/langchain-ai/langchain.git" +reference = "HEAD" +resolved_reference = "2d83505be979fb947e976ae7c48be87e49f41a27" +subdirectory = "libs/core" + [[package]] name = "langchain-openai" version = "0.1.1" @@ -3157,4 +3162,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = ">=3.9,<4.0" -content-hash = "9c7e74bec9a4feacefd82e9b94765aa0ded5fe4efd73e4023cbc7cd03bfc473d" +content-hash = "240c5ef83b026ab5f8ae161fedea27991ddc31b68b7d68cd0e79cdd4c67aed42" diff --git a/libs/weaviate/pyproject.toml b/libs/weaviate/pyproject.toml index 5988b70..0b5a525 100644 --- a/libs/weaviate/pyproject.toml +++ b/libs/weaviate/pyproject.toml @@ -33,6 +33,7 @@ pytest-xdist = "^3.5.0" openai = "^1.6.0" tiktoken = ">=0.5.2,<0.7.0" pytest-cov = ">=4.1,<6.0" +langchain-core = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core"} [tool.poetry.group.codespell] optional = true @@ -49,12 +50,14 @@ ruff = ">=0.1.5,<0.4.0" [tool.poetry.group.typing.dependencies] mypy = ">=0.991,<1.10" types-requests = "^2.31.0.20240403" +langchain-core = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core"} [tool.poetry.group.dev] optional = true [tool.poetry.group.dev.dependencies] ipykernel = "^6.27.1" +langchain-core = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core"} [tool.poetry.group.test_integration] optional = true