From 20779275046e4e96a4ab573cda6ef29062f4b5c7 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Wed, 14 Aug 2024 10:03:36 +0200 Subject: [PATCH] pyproject.toml: Always use latest ruff ruff is now a lot more stable than in the beginning, and since we're inclined to forget updating these things let's just use the latest version of ruff. We will notice it automatically when they adopt a new convention. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bc63d4cd..fa183949 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,7 +54,7 @@ dynamic = ["version"] [project.optional-dependencies] dev = [ - "ruff~=0.1.1", # Update periodically + "ruff", "coverage", "pytest >= 4.6", "pytest-cov",