From c416ef62255c88b9866e17c6f046dd24e46413f2 Mon Sep 17 00:00:00 2001 From: Larry Bradley Date: Tue, 19 Sep 2023 21:20:25 -0400 Subject: [PATCH] Add comment about turning warnings into exceptions --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 748d3bf7f..a2eebbe7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -120,7 +120,7 @@ addopts = '--color=yes --doctest-rst' xfail_strict = true remote_data_strict = true filterwarnings = [ - 'error', + 'error', # turn warnings into exceptions 'ignore:numpy.ufunc size changed:RuntimeWarning', 'ignore:numpy.ndarray size changed:RuntimeWarning', # numpy 1.24 deprecation from skimage (can remove for skimage >= 0.20)