mistral[patch]: Release 0.2.3 (#28452)

This commit is contained in:
Bagatur
2024-12-02 08:26:28 -08:00
committed by GitHub
parent 49914e959a
commit 47433485e7
2 changed files with 241 additions and 194 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-mistralai"
version = "0.2.2"
version = "0.2.3"
description = "An integration package connecting Mistral and LangChain"
authors = []
readme = "README.md"
@@ -20,24 +20,21 @@ disallow_untyped_defs = "True"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
langchain-core = "^0.3.15"
langchain-core = "^0.3.21"
tokenizers = ">=0.15.1,<1"
httpx = ">=0.25.2,<1"
httpx-sse = ">=0.3.1,<1"
pydantic = ">=2,<3"
[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"
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]