cli[patch]: integration template nits (#14691)

Co-authored-by: Erick Friis <erick@langchain.dev>
This commit is contained in:
Bagatur
2024-02-09 17:59:34 -08:00
committed by GitHub
parent 99540d3d75
commit 10c10f2dea
6 changed files with 51 additions and 56 deletions

View File

@@ -12,25 +12,21 @@ license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
langchain-core = ">=0.0.12"
langchain-core = "^0.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.3.0"
freezegun = "^1.2.2"
pytest-mock = "^3.10.0"
syrupy = "^4.0.2"
pytest-watcher = "^0.3.4"
pytest-asyncio = "^0.21.1"
pytest = "^7.4.3"
pytest-asyncio = "^0.23.2"
langchain-core = {path = "../../core", develop = true}
[tool.poetry.group.codespell]
optional = true
[tool.poetry.group.codespell.dependencies]
codespell = "^2.2.0"
codespell = "^2.2.6"
[tool.poetry.group.test_integration]
optional = true
@@ -41,10 +37,10 @@ optional = true
optional = true
[tool.poetry.group.lint.dependencies]
ruff = "^0.1.5"
ruff = "^0.1.8"
[tool.poetry.group.typing.dependencies]
mypy = "^0.991"
mypy = "^1.7.1"
langchain-core = {path = "../../core", develop = true}
[tool.poetry.group.dev]
@@ -87,8 +83,6 @@ addopts = "--snapshot-warn-unused --strict-markers --strict-config --durations=5
# Registering custom markers.
# https://docs.pytest.org/en/7.1.x/example/markers.html#registering-markers
markers = [
"requires: mark tests as requiring a specific library",
"asyncio: mark tests as requiring asyncio",
"compile: mark placeholder test used to compile integration tests without running them",
]
asyncio_mode = "auto"