Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 2, 2025

Bumps geopandas from 1.0.1 to 1.1.0.

Release notes

Sourced from geopandas's releases.

v1.1.0

Notes on dependencies:

  • GeoPandas 1.1 now requires Python 3.10 or greater and pandas 2.0, numpy 1.24, pyproj 3.5, are now the minimum required version for these dependencies. Furthermore, the minimum tested version for optional dependencies has been updated to fiona 1.8.21, scipy 1.9, matplotlib 3.7, mapclassify 2.5, folium 0.12 and SQLAlchemy 2.0. Older versions of these libraries may continue to work, but are no longer considered supported (#3371).

New features and improvements:

  • Added options to return the result of SpatialIndex.query in a form of a dense or a sparse boolean array. This adds optional dependency on scipy for the sparse output. Note that this also changes the previously undocumented behaviour of the output_format keyword (#1674).
  • Add grid_size parameter to union_all and dissolve (#3445).
  • GeoDataFrame.plot now supports pd.Index as an input for the column keyword (#3463).
  • Added disjoint_subset union algorithm for union_all and dissolve (#3534).
  • Added constrained_delaunay_triangles method to GeoSeries/GeoDataFrame (#3552).
  • Added to_pandas_kwargs argument to from_arrow, read_parquet and read_feather to allow better control of conversion of non-geometric Arrow data to DataFrames (#3466).
  • Added is_valid_coverage and invalid_coverage_edges to GeoSeries/GeoDataFrame to allow validation of polygonal coverage (#3545).
  • Added maximum_inscribed_circle method from shapely to GeoSeries/GeoDataFrame (#3544).
  • Added minimum_clearance_line method from shapely to GeoSeries/GeoDataFrame (#3543).
  • Added orient_polygons method from shapely to GeoSeries/GeoDataFrame (#3559).
  • Added method and keep_collapsed argument to make_valid (#3548).
  • Added simplify_coverage method for topological simplification of polygonal coverages to GeoSeries/GeoDataFrame (#3541).
  • Added initial support of M coordinates (m and has_m properties, include_m in get_coordinates) (#3561).
  • Added geom_equals_identical method exposing equals_identical from shapely to GeoSeries/GeoDataFrame (#3560).
  • GeoPandas now attempts to use a range request when reading from an URL even if the header does not directly indicate its support (#3572).
  • Added geopandas.accessors module. Import this module to register a pandas.Series.geo accessor, which exposes GeoSeries methods via pandas's extension mechanism (#3272).
  • Improve performance of overlay with how=identity (#3504).
  • A warning message is raised in read_file when a GeoDataFrame or GeoSeries mask and/or the source dataset is missing a defined CRS. (#3464)
  • GeoDataFrame no longer hard-codes the class internally, allowing easier subclassing (#3505).

Bug fixes:

  • Fix an issue that showed numpy dtypes in bbox in to_geo_dict and __geo_interface__. (#3436)
  • Fix an issue in sample_points that could occasionally result in non-uniform distribution (#3470).
  • Fix unspecified layer warning being emitted while reading multilayer datasets, even when layer is specified when using the mask or bbox keywords (#3378).
  • Properly support named aggregations over a geometry column in GroupBy.agg (#3368).
  • Support GeoDataFrame constructor receiving arguments to geometry which are not

... (truncated)

Changelog

Sourced from geopandas's changelog.

Version 1.1.0 (June 1, 2025)

Notes on dependencies:

  • GeoPandas 1.1 now requires Python 3.10 or greater and pandas 2.0, numpy 1.24, pyproj 3.5, are now the minimum required version for these dependencies. Furthermore, the minimum tested version for optional dependencies has been updated to fiona 1.8.21, scipy 1.9, matplotlib 3.7, mapclassify 2.5, folium 0.12 and SQLAlchemy 2.0. Older versions of these libraries may continue to work, but are no longer considered supported (#3371).

New features and improvements:

  • Added options to return the result of SpatialIndex.query in a form of a dense or a sparse boolean array. This adds optional dependency on scipy for the sparse output. Note that this also changes the previously undocumented behaviour of the output_format keyword (#1674).
  • Add grid_size parameter to union_all and dissolve (#3445).
  • GeoDataFrame.plot now supports pd.Index as an input for the column keyword (#3463).
  • Added disjoint_subset union algorithm for union_all and dissolve (#3534).
  • Added constrained_delaunay_triangles method to GeoSeries/GeoDataFrame (#3552).
  • Added to_pandas_kwargs argument to from_arrow, read_parquet and read_feather to allow better control of conversion of non-geometric Arrow data to DataFrames (#3466).
  • Added is_valid_coverage and invalid_coverage_edges to GeoSeries/GeoDataFrame to allow validation of polygonal coverage (#3545).
  • Added maximum_inscribed_circle method from shapely to GeoSeries/GeoDataFrame (#3544).
  • Added minimum_clearance_line method from shapely to GeoSeries/GeoDataFrame (#3543).
  • Added orient_polygons method from shapely to GeoSeries/GeoDataFrame (#3559).
  • Added method and keep_collapsed argument to make_valid (#3548).
  • Added simplify_coverage method for topological simplification of polygonal coverages to GeoSeries/GeoDataFrame (#3541).
  • Added initial support of M coordinates (m and has_m properties, include_m in get_coordinates) (#3561).
  • Added geom_equals_identical method exposing equals_identical from shapely to GeoSeries/GeoDataFrame (#3560).
  • GeoPandas now attempts to use a range request when reading from an URL even if the header does not directly indicate its support (#3572).
  • Added geopandas.accessors module. Import this module to register a pandas.Series.geo accessor, which exposes GeoSeries methods via pandas's extension mechanism (#3272).
  • Improve performance of overlay with how=identity (#3504).
  • A warning message is raised in read_file when a GeoDataFrame or GeoSeries mask and/or the source dataset is missing a defined CRS. (#3464)
  • GeoDataFrame no longer hard-codes the class internally, allowing easier subclassing (#3505).

Bug fixes:

  • Fix an issue that showed numpy dtypes in bbox in to_geo_dict and __geo_interface__. (#3436)
  • Fix an issue in sample_points that could occasionally result in non-uniform distribution (#3470).
  • Fix unspecified layer warning being emitted while reading multilayer datasets, even when layer is specified when using the mask or bbox keywords (#3378).
  • Properly support named aggregations over a geometry column in GroupBy.agg (#3368).

... (truncated)

Commits
  • c36eba0 RSL: changelog for 1.1.0 release (#3586)
  • 2d6b332 remove remote url xfail (#3585)
  • ce86559 DOC: Drafted new documentation page outlining how to create inset maps and in...
  • d0ffe06 ENH: add error message when reading dataset without crs with a GeoDataFrame o...
  • f3f145f CI: xfail remote url test for now (#3584)
  • a198eee shapely 2.1 follow-up (docstrings, positional arguments) (#3573)
  • f2dd60c add opportunistic range request (#3572)
  • 7604964 BUG: close polygon patches when plotting (#3576)
  • 8568939 DOC: contributing should use the name geopandas-dev as that is used in `e...
  • 739a56b COMPAT: avoid passing include_z positionally in transform method for shapely ...
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

@dependabot dependabot bot added the FlowMachine Issues related to FlowMachine label Jun 2, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jun 2, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Join our Discord community for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@cypress
Copy link

cypress bot commented Jun 2, 2025

FlowAuth    Run #24871

Run Properties:  status check failed Failed #24871  •  git commit 7792b1d95b: Bump geopandas from 1.0.1 to 1.1.0 in /flowmachine
Project FlowAuth
Branch Review dependabot-pip-flowmachine-geopandas-1.1.0
Run status status check failed Failed #24871
Run duration 02m 12s
Commit git commit 7792b1d95b: Bump geopandas from 1.0.1 to 1.1.0 in /flowmachine
Committer dependabot[bot]
View all properties for this run ↗︎

Test results
Tests that failed  Failures 1
Tests that were flaky  Flaky 2
Tests that did not run due to a developer annotating a test with .skip  Pending 0
Tests that did not run due to a failure in a mocha hook  Skipped 6
Tests that passed  Passing 36
View all changes introduced in this branch ↗︎

Tests for review

Failed  cypress/e2e/role_list.js • 1 failed test

View Output

Test Artifacts
role list screen > Add blank role Test Replay Screenshots
Flakiness  cypress/e2e/add_new_server.js • 2 flaky tests

View Output

Test Artifacts
Server management > Add duplicate Server name Test Replay Screenshots
Server management > Add server Test Replay Screenshots

@dependabot dependabot bot force-pushed the dependabot-pip-flowmachine-geopandas-1.1.0 branch 4 times, most recently from 6a47e3b to 38dcc5b Compare June 5, 2025 04:31
@dependabot dependabot bot force-pushed the dependabot-pip-flowmachine-geopandas-1.1.0 branch from 38dcc5b to 4f98a4e Compare June 17, 2025 04:31
@codecov
Copy link

codecov bot commented Jun 17, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 78.26%. Comparing base (e7cc99b) to head (7e0a04b).

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #7043   +/-   ##
=======================================
  Coverage   78.26%   78.26%           
=======================================
  Files          66       66           
  Lines        3170     3170           
  Branches      134      134           
=======================================
  Hits         2481     2481           
  Misses        667      667           
  Partials       22       22           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@dependabot dependabot bot force-pushed the dependabot-pip-flowmachine-geopandas-1.1.0 branch 8 times, most recently from 430cbcd to 12074cd Compare June 23, 2025 04:49
Bumps [geopandas](https://github.com/geopandas/geopandas) from 1.0.1 to 1.1.0.
- [Release notes](https://github.com/geopandas/geopandas/releases)
- [Changelog](https://github.com/geopandas/geopandas/blob/main/CHANGELOG.md)
- [Commits](geopandas/geopandas@v1.0.1...v1.1.0)

---
updated-dependencies:
- dependency-name: geopandas
  dependency-version: 1.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot-pip-flowmachine-geopandas-1.1.0 branch from 12074cd to 7792b1d Compare June 23, 2025 05:15
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 27, 2025

Superseded by #7074.

@dependabot dependabot bot closed this Jun 27, 2025
@dependabot dependabot bot deleted the dependabot-pip-flowmachine-geopandas-1.1.0 branch June 27, 2025 03:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

FlowMachine Issues related to FlowMachine

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant