From 60b12c7e4f0326dcec4162484beb945dd9587765 Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Tue, 24 Oct 2023 09:44:19 -0400 Subject: [PATCH] TST: Ignore numpy.core DeprecationWarning --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index ee5aea6..2e50dc4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -83,6 +83,9 @@ filterwarnings = ignore:pkg_resources is deprecated as an API:DeprecationWarning # Python 3.12 warning from dateutil imported by matplotlib ignore:.*utcfromtimestamp:DeprecationWarning + # Ignore numpy 2.0 warning, see https://github.com/astropy/astropy/pull/15495 + # and https://github.com/scipy/scipy/pull/19275 + ignore:.*numpy\.core.*:DeprecationWarning [flake8] # Ignoring these for now: