From 97e8ce62f7e3cdc4ce3bcd0250892ff7d69c1f1e Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 19:14:04 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.4.3 → v0.4.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.3...v0.4.4) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b57d59c..3a18d3e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,7 +23,7 @@ repos: - id: python-use-type-annotations - id: text-unicode-replacement-char - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.4.3 + rev: v0.4.4 hooks: - id: ruff - id: ruff-format From 3a165421397860264a8aff20fdf6e4aab15a802b Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 20 May 2024 20:54:14 +0200 Subject: [PATCH 2/2] Fix. --- src/pytask_parallel/execute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pytask_parallel/execute.py b/src/pytask_parallel/execute.py index a4e5b11..1a6b61b 100644 --- a/src/pytask_parallel/execute.py +++ b/src/pytask_parallel/execute.py @@ -38,7 +38,7 @@ @hookimpl -def pytask_execute_build(session: Session) -> bool | None: # noqa: C901, PLR0915 +def pytask_execute_build(session: Session) -> bool | None: # noqa: C901, PLR0912, PLR0915 """Execute tasks with a parallel backend. There are three phases while the scheduler has tasks which need to be executed.