Co-authored-by: Clément Drouin <clement.drouin@mistral.ai>
Co-authored-by: Clément Sirieix <clement.sirieix@mistral.ai>
Co-authored-by: Guillaume LE GOFF <guillaume.lgf@gmail.com>
Co-authored-by: Mathias Gesbert <mathias.gesbert@mistral.ai>
Co-authored-by: Michel Thomazo <51709227+michelTho@users.noreply.github.com>
Co-authored-by: Pierre Rossinès <pierre.rossines@mistral.ai>
Co-authored-by: Vincent G <10739306+VinceOPS@users.noreply.github.com>
Co-authored-by: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
Quentin 2026-05-25 16:05:26 +02:00 committed by GitHub
parent f71bfd3b8c
commit adb1ca74ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
202 changed files with 5828 additions and 1968 deletions

View file

@ -1,6 +1,6 @@
[project]
name = "mistral-vibe"
version = "2.10.1"
version = "2.11.0"
description = "Minimal CLI coding agent by Mistral"
readme = "README.md"
requires-python = ">=3.12"
@ -106,7 +106,7 @@ dependencies = [
"soupsieve==2.8.3",
"sse-starlette==3.4.1",
"starlette==1.0.0",
"textual==8.2.4",
"textual==8.2.7",
"textual-speedups==0.2.1",
"tomli-w==1.2.0",
"tree-sitter==0.25.2",
@ -146,7 +146,7 @@ vibe-acp = "vibe.acp.entrypoint:main"
[tool.uv]
exclude-newer = "7 days"
exclude-newer-package = { agent-client-protocol = false, mistralai = false }
exclude-newer-package = { agent-client-protocol = false, mistralai = false, textual = false }
package = true
required-version = ">=0.8.0"
@ -225,8 +225,7 @@ ignore = ["D203", "D205", "D213", "ANN401", "PLR6301"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["ANN", "PLR"]
# Textual parent classes don't use ClassVar, so we can't either without breaking pyright
"vibe/cli/textual_ui/ansi_markdown.py" = ["RUF012"]
[tool.ruff.lint.flake8-tidy-imports]
ban-relative-imports = "all"