core[patch]: release 0.1.30 (#18706)

This commit is contained in:
Erick Friis 2024-03-06 16:12:18 -08:00 committed by GitHub
parent 2b234a4d96
commit c09b520ce4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 779 additions and 679 deletions

1440
libs/core/poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "langchain-core" name = "langchain-core"
version = "0.1.29" version = "0.1.30"
description = "Building applications with LLMs through composability" description = "Building applications with LLMs through composability"
authors = [] authors = []
license = "MIT" license = "MIT"
@ -18,7 +18,7 @@ anyio = ">=3,<5"
PyYAML = ">=5.3" PyYAML = ">=5.3"
requests = "^2" requests = "^2"
packaging = "^23.2" packaging = "^23.2"
jinja2 = {version = "^3", optional = true} jinja2 = { version = "^3", optional = true }
[tool.poetry.group.lint] [tool.poetry.group.lint]
optional = true optional = true
@ -34,7 +34,7 @@ mypy = "^0.991"
types-pyyaml = "^6.0.12.2" types-pyyaml = "^6.0.12.2"
types-requests = "^2.28.11.5" types-requests = "^2.28.11.5"
types-jinja2 = "^2.11.9" types-jinja2 = "^2.11.9"
langchain-text-splitters = {path = "../text-splitters", develop = true} langchain-text-splitters = { path = "../text-splitters", develop = true }
[tool.poetry.group.dev] [tool.poetry.group.dev]
optional = true optional = true
@ -53,7 +53,7 @@ optional = true
# Any dependencies that do not meet that criteria will be removed. # Any dependencies that do not meet that criteria will be removed.
pytest = "^7.3.0" pytest = "^7.3.0"
freezegun = "^1.2.2" freezegun = "^1.2.2"
pytest-mock = "^3.10.0" pytest-mock = "^3.10.0"
syrupy = "^4.0.2" syrupy = "^4.0.2"
pytest-watcher = "^0.3.4" pytest-watcher = "^0.3.4"
pytest-asyncio = "^0.21.1" pytest-asyncio = "^0.21.1"
@ -71,9 +71,9 @@ extended_testing = ["jinja2"]
[tool.ruff.lint] [tool.ruff.lint]
select = [ select = [
"E", # pycodestyle "E", # pycodestyle
"F", # pyflakes "F", # pyflakes
"I", # isort "I", # isort
"T201", # print "T201", # print
] ]
@ -82,9 +82,7 @@ disallow_untyped_defs = "True"
exclude = ["notebooks", "examples", "example_data", "langchain_core/pydantic"] exclude = ["notebooks", "examples", "example_data", "langchain_core/pydantic"]
[tool.coverage.run] [tool.coverage.run]
omit = [ omit = ["tests/*"]
"tests/*",
]
[build-system] [build-system]
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]