From 69209001e7379d1f463d401d655eaae4f13f3d97 Mon Sep 17 00:00:00 2001 From: Adrian Chaves Date: Fri, 31 Jul 2026 04:09:05 +0200 Subject: [PATCH] Track additional warning --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 53a1221fa..180debfff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -375,6 +375,8 @@ filterwarnings = [ "ignore:.*<_io\\.FileIO name=.*queuelib-tests-:pytest.PytestUnraisableExceptionWarning", # itemadapter imports pydantic.v1, which warns on Python 3.14 and higher. "ignore:Core Pydantic V1 functionality isn't compatible:UserWarning", + # pyftpdlib imports asynchat, removed in Python 3.12, on lower versions. + "ignore:The async(hat|ore) module is deprecated:DeprecationWarning", ] [tool.ruff.lint]