From 1e0835d086e7717717f45914ab8fbb29e9d79593 Mon Sep 17 00:00:00 2001 From: Bagatur Date: Mon, 2 Dec 2024 08:20:08 -0800 Subject: [PATCH] mistral[patch]: Release 0.2.3 --- libs/partners/mistralai/pyproject.toml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/libs/partners/mistralai/pyproject.toml b/libs/partners/mistralai/pyproject.toml index b2ae7a83bfd4a..bcfb42cdd78cf 100644 --- a/libs/partners/mistralai/pyproject.toml +++ b/libs/partners/mistralai/pyproject.toml @@ -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" @@ -27,17 +27,14 @@ 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]