From 31aabd20c20d48c110c66ce41ad584fda20616f9 Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Wed, 27 Mar 2024 14:03:54 -0400 Subject: [PATCH] TST: Ignore DeprecationWarning in Python 3.12 (#100) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index ae426903..f7254eea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -97,6 +97,7 @@ filterwarnings = [ "ignore:numpy\\.ndarray size changed:RuntimeWarning", "ignore:zmq\\.eventloop\\.ioloop is deprecated in pyzmq:DeprecationWarning", "ignore:((.|\n)*)Sentinel is not a public part of the traitlets API((.|\n)*)", + "ignore:datetime\\.datetime\\.utcfromtimestamp:DeprecationWarning", "ignore::DeprecationWarning:glue", "ignore::DeprecationWarning:bqplot", "ignore::DeprecationWarning:bqplot_image_gl",