From 1154d8c042aad73ac77b746300eeef58f6b1c25c Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 17 Sep 2024 12:11:08 +0200 Subject: [PATCH] ignore deprecationwarning in ipykernel --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a24c799e..3701c4f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -134,7 +134,7 @@ filterwarnings= [ "ignore:datetime.datetime.utcfromtimestamp:DeprecationWarning", "ignore:datetime.datetime.utcnow:DeprecationWarning", # from ipykernel 6 (fixed in 7) - "ignore:ipykernel.jsonutil:DeprecationWarning", + "ignore:Parsing dates:DeprecationWarning:ipykernel.jsonutil", ] [tool.coverage.report]