many: use core 0.3.15 (#27834)

This commit is contained in:
Bagatur
2024-11-01 13:35:55 -07:00
committed by GitHub
parent c3c638cd7b
commit ee63d21915
22 changed files with 545 additions and 443 deletions

View File

@@ -1,10 +1,10 @@
[build-system]
requires = ["poetry-core>=1.0.0"]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "langchain-exa"
version = "0.2.0"
version = "0.2.1"
description = "An integration package connecting Exa and LangChain"
authors = []
readme = "README.md"
@@ -20,21 +20,18 @@ disallow_untyped_defs = "True"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
langchain-core = "^0.3.0"
langchain-core = "^0.3.15"
exa-py = "^1.0.8"
[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 = "--snapshot-warn-unused --strict-markers --strict-config --durations=5"
markers = [
"requires: mark tests as requiring a specific library",
"compile: mark placeholder test used to compile integration tests without running them",
]
markers = [ "requires: mark tests as requiring a specific library", "compile: mark placeholder test used to compile integration tests without running them",]
asyncio_mode = "auto"
[tool.poetry.group.test]