From 30f1bf24ac5f62b17dd71bc341fd3dfadd03893f Mon Sep 17 00:00:00 2001 From: Bagatur <22008038+baskaryan@users.noreply.github.com> Date: Sun, 25 Aug 2024 16:49:27 -0700 Subject: [PATCH] core[patch]: Release 0.2.35 (#25729) --- libs/core/pyproject.toml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/libs/core/pyproject.toml b/libs/core/pyproject.toml index 38a7c1fcbf463..e1fc44bde3b4a 100644 --- a/libs/core/pyproject.toml +++ b/libs/core/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "langchain-core" -version = "0.2.34" +version = "0.2.35" description = "Building applications with LLMs through composability" authors = [] license = "MIT" @@ -30,7 +30,6 @@ jsonpatch = "^1.33" PyYAML = ">=5.3" packaging = ">=23.2,<25" typing-extensions = ">=4.7" - [[tool.poetry.dependencies.pydantic]] version = ">=1,<3" python = "<3.12.4" @@ -43,10 +42,7 @@ python = ">=3.12.4" [tool.ruff.lint] select = [ "E", "F", "I", "T201", "UP",] -ignore = [ - "UP006", # Incompatible with pydantic v1 - "UP007", # Incompatible with pydantic v1 -] +ignore = [ "UP006", "UP007",] [tool.coverage.run] omit = [ "tests/*",]