diff --git a/CHANGELOG.md b/CHANGELOG.md index c5d81d1..75e3b3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ Changelog ========= +Version 0.5.0 (upcoming) +------------------------ + +Deprecations and compatibility notes: + +- The deprecated `geom_almost_equals` method has been removed. Use `geom_equals_exact` instead. + + Version 0.4.3 (January, 2025) ----------------------------------- +----------------------------- Packaging: diff --git a/dask_geopandas/expr.py b/dask_geopandas/expr.py index 1a1f3d3..c597da2 100644 --- a/dask_geopandas/expr.py +++ b/dask_geopandas/expr.py @@ -1023,7 +1023,6 @@ def func(data): for name in [ "contains", "geom_equals", - "geom_almost_equals", "crosses", "disjoint", "intersects", diff --git a/dask_geopandas/tests/test_core.py b/dask_geopandas/tests/test_core.py index 678f869..1122db1 100644 --- a/dask_geopandas/tests/test_core.py +++ b/dask_geopandas/tests/test_core.py @@ -282,7 +282,6 @@ def test_project(geoseries_lines): [ "contains", "geom_equals", - "geom_almost_equals", "crosses", "disjoint", "intersects", diff --git a/doc/source/docs/reference/geoseries.rst b/doc/source/docs/reference/geoseries.rst index ec1f641..9de08cd 100644 --- a/doc/source/docs/reference/geoseries.rst +++ b/doc/source/docs/reference/geoseries.rst @@ -53,7 +53,6 @@ Binary Predicates GeoSeries.crosses GeoSeries.disjoint GeoSeries.geom_equals - GeoSeries.geom_almost_equals GeoSeries.geom_equals_exact GeoSeries.intersects GeoSeries.overlaps