From 9c66c21abdba344f6660167b4fc7ac1d76dc854f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 19:03:05 +0000 Subject: [PATCH 1/3] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/psf/black-pre-commit-mirror: 25.9.0 → 25.11.0](https://github.com/psf/black-pre-commit-mirror/compare/25.9.0...25.11.0) --- .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 b0a9ab4..2ab3cb5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -22,7 +22,7 @@ repos: hooks: - id: isort - repo: https://github.com/psf/black-pre-commit-mirror - rev: 25.9.0 + rev: 25.11.0 hooks: - id: black - repo: https://github.com/codespell-project/codespell From adb6ba2eaacde308dd1557975356df34c06b4d7b Mon Sep 17 00:00:00 2001 From: Adrien Berchet Date: Mon, 1 Dec 2025 21:39:41 +0100 Subject: [PATCH 2/3] Fix: Remove useless decorator --- tests/test_task.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_task.py b/tests/test_task.py index 75df558..f81d081 100644 --- a/tests/test_task.py +++ b/tests/test_task.py @@ -273,7 +273,6 @@ def test_optional_list_param(self, tmp_path): class TestCopyParamsWithGlobals: """Test the `luigi_tools.task.copy_params` decorator with global parameters.""" - @pytest.mark.filterwarnings("ignore::UserWarning:luigi.parameter") @pytest.fixture def TaskA(self): """A simple test task.""" From 260135c38b9030d98a721d546d6581161d23ee92 Mon Sep 17 00:00:00 2001 From: Adrien Berchet Date: Mon, 1 Dec 2025 21:52:21 +0100 Subject: [PATCH 3/3] Docs: Fix config --- docs/source/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 8bbc84e..259cd2d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -82,6 +82,7 @@ # autodoc settings autodoc_typehints = "signature" autodoc_default_options = {"members": True, "show-inheritance": True} +autodoc_use_legacy_class_based = True intersphinx_mapping = { "python": ("https://docs.python.org/3", None),