From 0d321ab5270886fee1d8f2e1bc4122c9bdb09708 Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 17 Sep 2024 11:19:56 +0200 Subject: [PATCH] ignore deprecationwarning in ipykernel --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 8a0ea4f4..a24c799e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -133,6 +133,8 @@ filterwarnings= [ # from python-dateutil "ignore:datetime.datetime.utcfromtimestamp:DeprecationWarning", "ignore:datetime.datetime.utcnow:DeprecationWarning", + # from ipykernel 6 (fixed in 7) + "ignore:ipykernel.jsonutil:DeprecationWarning", ] [tool.coverage.report]