Skip to content

Bump geopandas from 1.0.1 to 1.1.1 in /flowmachine #7074

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps geopandas from 1.0.1 to 1.1.1.

Release notes

Sourced from geopandas's releases.

v1.1.1

No release notes provided.

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

... (truncated)

Changelog

Sourced from geopandas's changelog.

Version 1.1.1 (June 27, 2025)

Bug fixes:

  • Fix regression in the GeoDataFrame constructor when np.nan is given as an only geometry (#3591).
  • Fix regression in overlay with how="identity" when input dataframes have column names that are equal (#3596).

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).

... (truncated)

Commits
  • e9b58ce RLS: v1.1.1
  • c6bf8b3 MAINT: enable pydocstyle ruff rules - automatic and easy fixes (#3598)
  • 339c7f7 TST: use nadgrids=null to suppress influence of grid files (#3588)
  • 2a7fad9 REGR: overlay with identity doesn't handle equal input column names correctly...
  • 1a1585d REGR: fix GeoDataFrame constructor when np.nan given as only geometry (#3591)
  • 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)
  • 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 27, 2025
Copy link
Contributor

coderabbitai bot commented Jun 27, 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.

Copy link

cypress bot commented Jun 27, 2025

FlowAuth    Run #25007

Run Properties:  status check passed Passed #25007  •  git commit 512d451677: Bump geopandas from 1.0.1 to 1.1.1 in /flowmachine
Project FlowAuth
Branch Review dependabot-pip-flowmachine-geopandas-1.1.1
Run status status check passed Passed #25007
Run duration 00m 43s
Commit git commit 512d451677: Bump geopandas from 1.0.1 to 1.1.1 in /flowmachine
Committer dependabot[bot]
View all properties for this run ↗︎

Test results
Tests that failed  Failures 0
Tests that were flaky  Flaky 0
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 0
Tests that passed  Passing 4
View all changes introduced in this branch ↗︎

@dependabot dependabot bot force-pushed the dependabot-pip-flowmachine-geopandas-1.1.1 branch 2 times, most recently from 2fa30c8 to 7d53789 Compare July 8, 2025 04:56
@dependabot dependabot bot force-pushed the dependabot-pip-flowmachine-geopandas-1.1.1 branch 3 times, most recently from b9d4832 to c414fdf Compare July 17, 2025 04:20
@dependabot dependabot bot force-pushed the dependabot-pip-flowmachine-geopandas-1.1.1 branch from c414fdf to 7f630a4 Compare July 23, 2025 03:44
Bumps [geopandas](https://github.com/geopandas/geopandas) from 1.0.1 to 1.1.1.
- [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.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot-pip-flowmachine-geopandas-1.1.1 branch from 7f630a4 to 512d451 Compare July 25, 2025 04:17
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.

0 participants