From c05853f9e1c00dbc5f7ce44268e2c1f23bf44bc9 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Wed, 15 Jan 2025 00:09:48 +0100 Subject: [PATCH] Upgrade to ruff 0.9.1 --- .pre-commit-config.yaml | 2 +- tests/ruff.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 55ceda910a4..ebbd323b389 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -22,7 +22,7 @@ repos: - id: black - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.8.6 + rev: v0.9.1 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] diff --git a/tests/ruff.toml b/tests/ruff.toml index 366d8a5814b..a2b54f33a05 100644 --- a/tests/ruff.toml +++ b/tests/ruff.toml @@ -4,7 +4,7 @@ extend = "../pyproject.toml" # And extend linting to include pytest specific rules and configuration [lint] extend-select = ["PT"] -ignore = ["PT004", "PT011"] +ignore = ["PT011"] [lint.flake8-pytest-style] mark-parentheses = false