From 530590b5a05e59e2bbccfd836bf1265e42738b84 Mon Sep 17 00:00:00 2001 From: Mattias Ellert Date: Mon, 4 May 2026 21:14:36 +0200 Subject: [PATCH] Ignore DeprecationWarning from Python 3.15 --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1ea1bdc..5341606 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -100,6 +100,8 @@ filterwarnings= [ "module:'setParseAction' deprecated - use 'set_parse_action':DeprecationWarning", # This is resolved in newer versions of Jupyter Core that removed the warning. "module:Jupyter is migrating its paths:DeprecationWarning", + # Warning from Python 3.15 (/usr/lib64/python3.15/pty.py) + "module:This process \\(pid=.*\\) is multi-threaded, use of forkpty\\(\\) may lead to deadlocks in the child:DeprecationWarning:pty", ] [tool.coverage.report]