From 88edf081543a597e2efc9620f0863098d7ab9f32 Mon Sep 17 00:00:00 2001 From: Greg Lucas Date: Sun, 15 Mar 2026 10:10:12 -0600 Subject: [PATCH] MNT: Upgrade deprecated ruff precommit configurations --- .pre-commit-config.yaml | 4 ++-- pyproject.toml | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ea8eed0b6..cb0dcf6d6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -37,7 +37,7 @@ repos: - id: sort-all types: [file, python] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: 'v0.14.10' + rev: 'v0.15.6' hooks: - - id: ruff + - id: ruff-check args: [--fix] diff --git a/pyproject.toml b/pyproject.toml index 1c8a420aa..f0eab655e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,9 +99,6 @@ python_files = ["test_*.py"] [tool.ruff] lint.select = ["E", "F", "I", "UP", "W"] -lint.ignore = [ - "UP038", # deprecated rule that should be ignored -] [tool.ruff.lint.isort] force-sort-within-sections = true