From d01d9ebb2c39d77f6805c70e9a25be283ea830b7 Mon Sep 17 00:00:00 2001 From: Brendon Smith Date: Sun, 14 Jul 2024 15:52:00 -0400 Subject: [PATCH] Update to Ruff 0.5 Ruff 0.4 improves parser speed and adds a language server. Ruff 0.5 updates the default output format and adds support for XDG config paths (`~/.config/ruff/ruff.toml`) on macOS. https://astral.sh/blog/ruff-v0.4.0 https://astral.sh/blog/ruff-v0.5.0 https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5440d0e..b7fa7bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ requires-python = ">=3.10,<4" [project.optional-dependencies] checks = [ "mypy==1.9.0", - "ruff>=0.3,<0.4", + "ruff>=0.5,<0.6", ] docs = [ "mkdocs-material>=9,<10",