From 654fd9ed28203f15b396ed294f8d045f3954f952 Mon Sep 17 00:00:00 2001 From: jessegrabowski Date: Sat, 7 Oct 2023 22:36:46 -0400 Subject: [PATCH] Remove unnecessary filtered warnings --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b0372d397..83cec8b23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,8 +11,8 @@ filterwarnings =[ "error", "ignore::UserWarning:arviz.data.inference_data", 'ignore:.*(\b(pkg_resources\.declare_namespace|np\.bool8)\b).*:DeprecationWarning', - 'ignore::DeprecationWarning:.*numpy.core.fromnumeric', - 'ignore::DeprecationWarning:.*numpy.core.numerictypes' + 'ignore::DeprecationWarning:.*numpy.core.fromnumeric*', + 'ignore::DeprecationWarning:.*numpy.core.numerictypes*' ] [tool.black] @@ -27,7 +27,7 @@ exclude_lines = [ [tool.isort] profile = "black" -#lines_between_types = 1 +lines_between_types = 1 [tool.nbqa.mutate] isort = 1