From bce5167018f05c66dbf5cba7585106b11bdb7e44 Mon Sep 17 00:00:00 2001 From: Paul Sanders Date: Thu, 30 Jan 2025 13:14:38 -0500 Subject: [PATCH] Bump default ruff version 0.9.3 -> 0.9.4 --- src/package_version.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/package_version.rs b/src/package_version.rs index 0e6510a3..b5e861f5 100644 --- a/src/package_version.rs +++ b/src/package_version.rs @@ -175,7 +175,7 @@ pub fn default_version(package: &PythonPackage) -> String { PythonPackage::Pytest => "8.3.4".to_string(), PythonPackage::PytestAsyncio => "0.25.3".to_string(), PythonPackage::PytestCov => "6.0.0".to_string(), - PythonPackage::Ruff => "0.9.3".to_string(), + PythonPackage::Ruff => "0.9.4".to_string(), PythonPackage::Tomli => "2.0.1".to_string(), } } @@ -184,7 +184,7 @@ pub fn default_pre_commit_rev(hook: &PreCommitHook) -> String { match hook { PreCommitHook::MyPy => "v1.14.1".to_string(), PreCommitHook::PreCommit => "v5.0.0".to_string(), - PreCommitHook::Ruff => "v0.9.3".to_string(), + PreCommitHook::Ruff => "v0.9.4".to_string(), } }