From 6b132b0a0acc8dc791f4e7a1a8863d16c0d5a69a Mon Sep 17 00:00:00 2001 From: Grzegorz Bokota Date: Tue, 11 Feb 2025 16:37:06 +0100 Subject: [PATCH 1/2] filter out __get_validators__ warning --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f9cee95..d9c32f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -123,7 +123,11 @@ docstring-code-format = true # https://docs.pytest.org/en/6.2.x/customize.html [tool.pytest.ini_options] minversion = "6.0" -filterwarnings = ["error", "ignore:Enum value:DeprecationWarning:superqt"] +filterwarnings = [ + "error", + "ignore:Enum value:DeprecationWarning:superqt", + "ignore:`__get_validators__` is deprecated and will be removed", +] # https://mypy.readthedocs.io/en/stable/config_file.html [tool.mypy] From cb79fcccfa3a54707596cedd0ccb0e96651225a9 Mon Sep 17 00:00:00 2001 From: Grzegorz Bokota Date: Tue, 11 Feb 2025 16:49:41 +0100 Subject: [PATCH 2/2] add commit to satisfy semantic PR check