From 753d0917d429660b6158aea4343780ef60d9a950 Mon Sep 17 00:00:00 2001 From: Ryan May Date: Tue, 8 Oct 2024 11:35:43 -0600 Subject: [PATCH] MNT: Loosen warning filter A warning triggered by PrPROJ with Numpy 2.x shifted a bit. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b158ac639c..123fa9bcbf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -113,7 +113,7 @@ filterwarnings = [ "ignore:Conversion of an array with ndim > 0 to a scalar is deprecated:DeprecationWarning:pint.facets.plain.quantity:575", # PyProj automatically dispatching for single point, will be waiting for NumPy 2.0 to address # See: https://github.com/pyproj4/pyproj/issues/1309 - "ignore:Conversion of an array with ndim > 0 to a scalar is deprecated:DeprecationWarning:pyproj.geod:404", + "ignore:Conversion of an array with ndim > 0 to a scalar is deprecated:DeprecationWarning:pyproj.geod", # Pandas >=2.2 warns about PyArrow being a future dependency 'ignore:\nPyarrow will become a required dependency of pandas:DeprecationWarning', # Not yet fixed in xarray