diff --git a/libs/core/pyproject.toml b/libs/core/pyproject.toml index bdece6d32d1f6..62e4c463b1ce9 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.3.1" +version = "0.3.2" description = "Building applications with LLMs through composability" authors = [] license = "MIT" @@ -18,6 +18,9 @@ disallow_untyped_defs = "True" module = [ "numpy", "pytest",] ignore_missing_imports = true +[tool.ruff] +target-version = "py39" + [tool.poetry.urls] "Source Code" = "https://github.com/langchain-ai/langchain/tree/master/libs/core" "Release Notes" = "https://github.com/langchain-ai/langchain/releases?q=tag%3A%22langchain-core%3D%3D0%22&expanded=true" @@ -40,20 +43,9 @@ python = ">=3.12.4" [tool.poetry.extras] -[tool.ruff] -target-version = "py39" - [tool.ruff.lint] -select = ["B", "E", "F", "I", "N", "T201", "UP"] -ignore = ["UP007"] - -[tool.ruff.lint.pep8-naming] -classmethod-decorators = [ - "classmethod", - "langchain_core.utils.pydantic.pre_init", - "pydantic.field_validator", - "pydantic.v1.root_validator", -] +select = [ "B", "E", "F", "I", "N", "T201", "UP",] +ignore = [ "UP007",] [tool.coverage.run] omit = [ "tests/*",] @@ -79,6 +71,9 @@ optional = true [tool.poetry.group.test_integration] optional = true +[tool.ruff.lint.pep8-naming] +classmethod-decorators = [ "classmethod", "langchain_core.utils.pydantic.pre_init", "pydantic.field_validator", "pydantic.v1.root_validator",] + [tool.ruff.lint.per-file-ignores] "tests/unit_tests/prompts/test_chat.py" = [ "E501",] "tests/unit_tests/runnables/test_runnable.py" = [ "E501",]