From c3e1aa0276fb00cf8bfcdfdc7508b34eb5c80f91 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 20 Aug 2024 11:31:13 +0200 Subject: [PATCH] chore(deps): pre-commit autoupdate (#463) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(deps): pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.6 → v0.6.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.5.6...v0.6.1) * fix(ci): ignore F403 and F405 in notebooks --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Jérome Eertmans --- .pre-commit-config.yaml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c997f515..5cf79f87 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -25,7 +25,7 @@ repos: hooks: - id: blackdoc - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.5.6 + rev: v0.6.1 hooks: - id: ruff args: [--fix] diff --git a/pyproject.toml b/pyproject.toml index f32ef6be..ae0ad5be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -210,6 +210,7 @@ extend-select = ["B", "C90", "D", "I", "N", "RUF", "UP", "T"] isort = {known-first-party = ["manim_slides", "tests"]} [tool.ruff.lint.per-file-ignores] +"docs/source/reference/magic_example.ipynb" = ["F403", "F405"] "tests/test_slide.py" = ["N801"] [tool.rye]