Skip to content

Commit

Permalink
core[patch]: Release 0.3.2 (#26686)
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan committed Sep 19, 2024
1 parent f087ab4 commit c453b76
Showing 1 changed file with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions libs/core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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/*",]
Expand All @@ -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",]
Expand Down

0 comments on commit c453b76

Please sign in to comment.