From 4fb7c61107599176ef093b1281cdfdb47f37e992 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 11:42:48 +0000 Subject: [PATCH 1/2] build(deps-dev): update geopandas requirement Updates the requirements on [geopandas](https://github.com/geopandas/geopandas) to permit the latest version. - [Release notes](https://github.com/geopandas/geopandas/releases) - [Changelog](https://github.com/geopandas/geopandas/blob/main/CHANGELOG.md) - [Commits](https://github.com/geopandas/geopandas/compare/v0.13.0...v0.14.0) --- updated-dependencies: - dependency-name: geopandas dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c9f5603f..78a80a2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,7 +65,7 @@ docs = [ "boto3~=1.26", "cartopy~=0.21", "geojson~=3.0.1", - "geopandas~=0.13.0", + "geopandas>=0.13,<0.15", "geoviews~=1.9", "hvplot~=0.8.3", "ipykernel~=6.22", From e75d995c98003328a93cd9ff1e41ab163dd85015 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Mon, 18 Sep 2023 05:48:17 -0600 Subject: [PATCH 2/2] fix: use ~= --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 78a80a2f..9a0bb8b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,7 +65,7 @@ docs = [ "boto3~=1.26", "cartopy~=0.21", "geojson~=3.0.1", - "geopandas>=0.13,<0.15", + "geopandas~=0.14.0", "geoviews~=1.9", "hvplot~=0.8.3", "ipykernel~=6.22",