From dd21b424d6808ee83cb889d7f1e7b955226cfea0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Tue, 21 Jan 2025 10:27:34 -0800 Subject: [PATCH] pyproject: ignore 'audioop' deprecation warning --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1fd2033a3..57d1f2703 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -89,6 +89,9 @@ addopts = "--verbose" testpaths = ["tests"] pythonpath = ["src"] asyncio_default_fixture_loop_scope = "function" +filterwarnings = [ + "ignore:'audioop' is deprecated:DeprecationWarning", +] [tool.setuptools_scm] local_scheme = "no-local-version"