Skip to content

chore(deps): bump geopandas from 0.14.4 to 1.0.1#174

Merged
Clarmy merged 1 commit into
mainfrom
dependabot/pip/geopandas-1.0.1
Apr 20, 2026
Merged

chore(deps): bump geopandas from 0.14.4 to 1.0.1#174
Clarmy merged 1 commit into
mainfrom
dependabot/pip/geopandas-1.0.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 8, 2026

Copy link
Copy Markdown
Contributor

Bumps geopandas from 0.14.4 to 1.0.1.

Release notes

Sourced from geopandas's releases.

v1.0.1

A small bug fix release fixing a regression caused by 1.0.0.

Bug fixes:

  • Support a named datetime or object dtype index in explore() (#3360, #3364).
  • Fix a regression preventing a Series as an argument for geometric methods (#3363)

Full Changelog: geopandas/geopandas@v1.0.0...v1.0.1

v1.0.0

Notes on dependencies:

  • GeoPandas 1.0 drops support for shapely<2 and PyGEOS. The only geometry engine that is currently supported is shapely >= 2. As a consequence, spatial indexing based on the rtree package has also been removed (#3035).
  • The I/O engine now defaults to Pyogrio which is now installed with GeoPandas instead of Fiona (#3223).

New methods:

  • Added count_geometries method from shapely to GeoSeries/GeoDataframe (#3154).
  • Added count_interior_rings method from shapely to GeoSeries/GeoDataframe (#3154)
  • Added relate_pattern method from shapely to GeoSeries/GeoDataframe (#3211).
  • Added intersection_all method from shapely to GeoSeries/GeoDataframe (#3228).
  • Added line_merge method from shapely to GeoSeries/GeoDataframe (#3214).
  • Added set_precision and get_precision methods from shapely to GeoSeries/GeoDataframe (#3175).
  • Added count_coordinates method from shapely to GeoSeries/GeoDataframe (#3026).
  • Added minimum_clearance method from shapely to GeoSeries/GeoDataframe (#2989).
  • Added shared_paths method from shapely to GeoSeries/GeoDataframe (#3215).
  • Added is_ccw method from shapely to GeoSeries/GeoDataframe (#3027).
  • Added is_closed attribute from shapely to GeoSeries/GeoDataframe (#3092).
  • Added force_2d and force_3d methods from shapely to GeoSeries/GeoDataframe (#3090).
  • Added voronoi_polygons method from shapely to GeoSeries/GeoDataframe (#3177).
  • Added contains_properly method from shapely to GeoSeries/GeoDataframe (#3105).
  • Added build_area method exposing build_area shapely to GeoSeries/GeoDataframe (#3202).
  • Added snap method from shapely to GeoSeries/GeoDataframe (#3086).
  • Added transform method from shapely to GeoSeries/GeoDataFrame (#3075).
  • Added get_geometry method from shapely to GeoSeries/GeoDataframe (#3287).
  • Added dwithin method to check for a "distance within" predicate on GeoSeries/GeoDataFrame (#3153).
  • Added to_geo_dict method to generate GeoJSON-like dictionary from a GeoDataFrame (#3132).
  • Added polygonize method exposing both polygonize and polygonize_full from shapely to GeoSeries/GeoDataframe (#2963).
  • Added is_valid_reason method from shapely to GeoSeries/GeoDataframe (#3176).
  • Added to_arrow method and from_arrow class method to GeoSeries/GeoDataFrame to export and import to/from Arrow data with GeoArrow extension types (#3219, #3301).

New features and improvements:

... (truncated)

Changelog

Sourced from geopandas's changelog.

Version 1.0.1 (July 2, 2024)

Bug fixes:

  • Support a named datetime or object dtype index in explore() (#3360, #3364).
  • Fix a regression preventing a Series as an argument for geometric methods (#3363).

Version 1.0.0 (June 24, 2024)

Notes on dependencies:

  • GeoPandas 1.0 drops support for shapely<2 and PyGEOS. The only geometry engine that is currently supported is shapely >= 2. As a consequence, spatial indexing based on the rtree package has also been removed (#3035).
  • The I/O engine now defaults to Pyogrio which is now installed with GeoPandas instead of Fiona (#3223).

New methods:

  • Added count_geometries method from shapely to GeoSeries/GeoDataFrame (#3154).
  • Added count_interior_rings method from shapely to GeoSeries/GeoDataFrame (#3154).
  • Added relate_pattern method from shapely to GeoSeries/GeoDataFrame (#3211).
  • Added intersection_all method from shapely to GeoSeries/GeoDataFrame (#3228).
  • Added line_merge method from shapely to GeoSeries/GeoDataFrame (#3214).
  • Added set_precision and get_precision methods from shapely to GeoSeries/GeoDataFrame (#3175).
  • Added count_coordinates method from shapely to GeoSeries/GeoDataFrame (#3026).
  • Added minimum_clearance method from shapely to GeoSeries/GeoDataFrame (#2989).
  • Added shared_paths method from shapely to GeoSeries/GeoDataFrame (#3215).
  • Added is_ccw method from shapely to GeoSeries/GeoDataFrame (#3027).
  • Added is_closed attribute from shapely to GeoSeries/GeoDataFrame (#3092).
  • Added force_2d and force_3d methods from shapely to GeoSeries/GeoDataFrame (#3090).
  • Added voronoi_polygons method from shapely to GeoSeries/GeoDataFrame (#3177).
  • Added contains_properly method from shapely to GeoSeries/GeoDataFrame (#3105).
  • Added build_area method exposing build_area shapely to GeoSeries/GeoDataFrame (#3202).
  • Added snap method from shapely to GeoSeries/GeoDataFrame (#3086).
  • Added transform method from shapely to GeoSeries/GeoDataFrame (#3075).
  • Added get_geometry method from shapely to GeoSeries/GeoDataFrame (#3287).
  • Added dwithin method to check for a "distance within" predicate on GeoSeries/GeoDataFrame (#3153).
  • Added to_geo_dict method to generate GeoJSON-like dictionary from a GeoDataFrame (#3132).
  • Added polygonize method exposing both polygonize and polygonize_full from shapely to GeoSeries/GeoDataFrame (#2963).
  • Added is_valid_reason method from shapely to GeoSeries/GeoDataFrame (#3176).
  • Added to_arrow method and from_arrow class method to GeoSeries/GeoDataFrame to export and import to/from Arrow data with GeoArrow extension types (#3219, #3301).

New features and improvements:

  • Added predicate="dwithin" option and distance argument to the sindex.query() method

... (truncated)

Commits
  • 747d66e BUG: Explore json non serialisable index fix (#3364)
  • 16d4571 REGR: fix regression preventing a Series as an arg for geo methods (#3363)
  • 7d460d9 BUG: support datetime in named index in explore() (#3360)
  • d88e60f DOC: Fix small typos in io.file (#3356)
  • 15a7fc6 DOC: Add arrow IO methods to API docs (#3352)
  • d8e14e1 RLS: v1.0.0
  • c6f66ad TST: Add test covering passing geojson string to read file (#3347)
  • 217772b ENH: add attribute requirement with spatial join (#3231)
  • 7c621fe DOC: Documentation tidy up (#3348)
  • 0618b22 Avoid read_feather to decode metadata twice + fix _arrow_to_geopandas for das...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [geopandas](https://github.com/geopandas/geopandas) from 0.14.4 to 1.0.1.
- [Release notes](https://github.com/geopandas/geopandas/releases)
- [Changelog](https://github.com/geopandas/geopandas/blob/main/CHANGELOG.md)
- [Commits](geopandas/geopandas@v0.14.4...v1.0.1)

---
updated-dependencies:
- dependency-name: geopandas
  dependency-version: 1.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Apr 8, 2026
@Clarmy Clarmy merged commit 849d220 into main Apr 20, 2026
16 checks passed
@dependabot dependabot Bot deleted the dependabot/pip/geopandas-1.0.1 branch April 20, 2026 06:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant