From a09c6a32691ab3a462d1aebb99ce666b4381d246 Mon Sep 17 00:00:00 2001 From: Larry Bradley Date: Wed, 18 Oct 2023 13:58:02 -0400 Subject: [PATCH] Ignore numpy.core deprecation warnings --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9076d9c7..0b56773e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -115,6 +115,8 @@ filterwarnings = [ 'ignore:unclosed file:ResourceWarning', # python 3.12 deprecation in matplotlib 3.9dev 'ignore:datetime.datetime.utcfromtimestamp\(\) is deprecated:DeprecationWarning', + # NumPy 2.0dev deprecations + "ignore:.*numpy\\.core.*:DeprecationWarning", ] markers = [ 'array_compare'