Skip to content

Commit

Permalink
community[patch]: Release 0.2.13 (#25806)
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan committed Aug 28, 2024
1 parent 85aef76 commit b0ac6fe
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 78 deletions.
127 changes: 66 additions & 61 deletions libs/community/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 9 additions & 17 deletions libs/community/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
[build-system]
requires = ["poetry-core>=1.0.0"]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "langchain-community"
version = "0.2.12"
version = "0.2.13"
description = "Community contributed LangChain integrations."
authors = []
license = "MIT"
readme = "README.md"
repository = "https://github.com/langchain-ai/langchain"

[tool.ruff]
exclude = [
"tests/examples/non-utf8-encoding.py",
"tests/integration_tests/examples/non-utf8-encoding.py",
]
exclude = [ "tests/examples/non-utf8-encoding.py", "tests/integration_tests/examples/non-utf8-encoding.py",]

[tool.mypy]
ignore_missing_imports = "True"
disallow_untyped_defs = "True"
exclude = ["notebooks", "examples", "example_data"]
exclude = [ "notebooks", "examples", "example_data",]

[tool.codespell]
skip = ".git,*.pdf,*.svg,*.pdf,*.yaml,*.ipynb,poetry.lock,*.min.js,*.css,package-lock.json,example_data,_dist,examples,*.trig"
Expand All @@ -33,16 +30,15 @@ ignore-words-list = "momento,collison,ned,foor,reworkd,parth,whats,aapply,mysogy

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
langchain-core = "^0.2.30"
langchain = "^0.2.13"
langchain-core = "^0.2.35"
langchain = "^0.2.15"
SQLAlchemy = ">=1.4,<3"
requests = "^2"
PyYAML = ">=5.3"
aiohttp = "^3.8.3"
tenacity = "^8.1.0,!=8.4.0"
dataclasses-json = ">= 0.5.7, < 0.7"
langsmith = "^0.1.0"

[[tool.poetry.dependencies.numpy]]
version = "^1"
python = "<3.12"
Expand All @@ -52,18 +48,14 @@ version = "^1.26.0"
python = ">=3.12"

[tool.ruff.lint]
select = ["E", "F", "I", "T201"]
select = [ "E", "F", "I", "T201",]

[tool.coverage.run]
omit = ["tests/*"]
omit = [ "tests/*",]

[tool.pytest.ini_options]
addopts = "--strict-markers --strict-config --durations=5 --snapshot-warn-unused -vv"
markers = [
"requires: mark tests as requiring a specific library",
"scheduled: mark tests to run in scheduled testing",
"compile: mark placeholder test used to compile integration tests without running them",
]
markers = [ "requires: mark tests as requiring a specific library", "scheduled: mark tests to run in scheduled testing", "compile: mark placeholder test used to compile integration tests without running them",]
asyncio_mode = "auto"

[tool.poetry.group.test]
Expand Down

0 comments on commit b0ac6fe

Please sign in to comment.