From 14e11c6664fb2b72c82005ff3bdba48d384d65ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 14:44:04 +0000 Subject: [PATCH 1/2] CI: (deps): Bump pyproj from 3.6.1 to 3.7.0 in /ci Bumps [pyproj](https://github.com/pyproj4/pyproj) from 3.6.1 to 3.7.0. - [Release notes](https://github.com/pyproj4/pyproj/releases) - [Changelog](https://github.com/pyproj4/pyproj/blob/main/docs/history.rst) - [Commits](https://github.com/pyproj4/pyproj/compare/3.6.1...3.7.0) --- updated-dependencies: - dependency-name: pyproj dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ci/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/requirements.txt b/ci/requirements.txt index f7a2afc0f6..ab2db72abd 100644 --- a/ci/requirements.txt +++ b/ci/requirements.txt @@ -3,7 +3,7 @@ numpy==2.1.1 pandas==2.2.3 pooch==1.8.2 pint==0.24.3 -pyproj==3.6.1 +pyproj==3.7.0 scipy==1.14.1 traitlets==5.14.3 xarray==2024.9.0 From 753d0917d429660b6158aea4343780ef60d9a950 Mon Sep 17 00:00:00 2001 From: Ryan May Date: Tue, 8 Oct 2024 11:35:43 -0600 Subject: [PATCH 2/2] 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