From ac963fcbd49fa2b2481eb5c7da94946775905372 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 22:12:29 +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.15.4 → v0.15.6](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.4...v0.15.6) - [github.com/codespell-project/codespell: v2.4.1 → v2.4.2](https://github.com/codespell-project/codespell/compare/v2.4.1...v2.4.2) --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7d85502..1ebb002 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,7 +9,7 @@ repos: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: 'v0.15.4' + rev: 'v0.15.6' hooks: - id: ruff args: [--fix] @@ -17,7 +17,7 @@ repos: - id: ruff-format files: ^(didl_lite|tests)/.+\.py$ - repo: https://github.com/codespell-project/codespell - rev: 'v2.4.1' + rev: 'v2.4.2' hooks: - id: codespell args: From ba96dd5d58ff4e7bea4e2bdef86566518c529400 Mon Sep 17 00:00:00 2001 From: Steven Looman Date: Tue, 17 Mar 2026 22:27:01 +0100 Subject: [PATCH 2/2] Update tox dependencies --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index dee8e68..8a4db4b 100644 --- a/tox.ini +++ b/tox.ini @@ -22,7 +22,7 @@ deps = basepython = python3 ignore_errors = True deps = - ruff == 0.15.1 + ruff == 0.15.6 commands = ruff check didl_lite tests ruff format --check didl_lite tests @@ -39,7 +39,7 @@ commands = pylint didl_lite tests basepython = python3 ignore_errors = True deps = - codespell == 2.4.1 + codespell == 2.4.2 commands = codespell didl_lite tests [testenv:mypy]