Skip to content

deps: bump the prod-deps group with 2 updates#62

Closed
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/pip/prod-deps-1115e687f0
Closed

deps: bump the prod-deps group with 2 updates#62
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/pip/prod-deps-1115e687f0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 26, 2026

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the prod-deps group with 2 updates: geopandas and cyclopts.

Updates geopandas from 0.14.4 to 1.1.2

Release notes

Sourced from geopandas's releases.

Version 1.1.2

What's Changed

Bug fixes:

  • Fix an issue that caused an error in GeoDataFrame.from_features when there is no properties field (#3599).
  • Fix read_file and to_file errors (#3682)
  • Fix read_parquet with to_pandas_kwargs for complex (list/struct) arrow types (#3640)
  • value_counts on GeoSeries now preserves CRS in index (#3669)
  • Fix f-string placeholders appearing in error messages when pyogrio cannot be imported (#3682).
  • Fix read_parquet with to_pandas_kwargs for complex (list/struct) arrow types (#3640).
  • .to_json now provides a clearer error message when called on a GeoDataFrame without an active geometry column (#3648).
  • Calling del gdf["geometry"] now will downcast to a pd.DataFrame if there are no geometry columns left in the dataframe (#3648).
  • Fix SQL injection in to_postgis via geometry column name (#3681).

Full Changelog: geopandas/geopandas@v1.1.1...v1.1.2

v1.1.1

A patch release containing minor regression fixes.

What's Changed

Full Changelog: geopandas/geopandas@v1.1.0...v1.1.1

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

... (truncated)

Changelog

Sourced from geopandas's changelog.

Version 1.1.2 (December 22, 2025)

Bug fixes:

  • Fix an issue that caused an error in GeoDataFrame.from_features when there is no properties field (#3599).
  • Fix read_file and to_file errors (#3682)
  • Fix read_parquet with to_pandas_kwargs for complex (list/struct) arrow types (#3640)
  • value_counts on GeoSeries now preserves CRS in index (#3669)
  • Fix f-string placeholders appearing in error messages when pyogrio cannot be imported (#3682).
  • Fix read_parquet with to_pandas_kwargs for complex (list/struct) arrow types (#3640).
  • .to_json now provides a clearer error message when called on a GeoDataFrame without an active geometry column (#3648).
  • Calling del gdf["geometry"] now will downcast to a pd.DataFrame if there are no geometry columns left in the dataframe (#3648).
  • Fix SQL injection in to_postgis via geometry column name (#3681).

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

... (truncated)

Commits
  • 81214bf RLS: backport fixes for 1.1.2 (#3693)
  • 62dd4a2 COMPAT: pandas 3 refactor breaks finalize (#3611) (#3621)
  • 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...
  • Additional commits viewable in compare view

Updates cyclopts from 3.24.0 to 4.5.1

Release notes

Sourced from cyclopts's releases.

v4.5.1

Bug Fixes

Full Changelog: BrianPugh/cyclopts@v4.5.0...v4.5.1

v4.5.0

Features

  • Introduces cyclopts.types.StdioPath. This type subclasses pathlib.Path. If the special string - is supplied, then the object will read/write to stdin/stdout. Only available on python >=3.12 by @​BrianPugh in BrianPugh/cyclopts#737

Full Changelog: BrianPugh/cyclopts@v4.4.6...v4.5.0

v4.4.6

What's Changed

Full Changelog: BrianPugh/cyclopts@v4.4.5...v4.4.6

v4.4.5

Bug Fixes

Full Changelog: BrianPugh/cyclopts@v4.4.4...v4.4.5

v4.4.4

Bug Fixes

Special Thanks to @​AntoninRousset for very clear and organized bug reporting with minimal-working examples!

Full Changelog: BrianPugh/cyclopts@v4.4.3...v4.4.4

v4.4.3

Bug Fixes

  • Place positive short flags after positive options, place negative short flags after negative options. By @​BrianPugh in BrianPugh/cyclopts#721

    Example python code:

    @app.default
    def foo(dry_run: Annotated[bool, Parameter(alias=["-d"])] = False):
        ...

    Before:

... (truncated)

Commits
  • 39f2fd8 Merge pull request #741 from BrianPugh/bugfix/issue-740
  • 4e835f7 resolve optional after unwrapping Annotated
  • 3a3300b more precise test highlighting the parameter-inheritance-issue.
  • cdf8d98 Add tests to replicate issue 740
  • 0699b69 mark some tests as slow to speed up typical local development.
  • 13b1ded Merge pull request #737 from BrianPugh/stdiofile-type
  • 4e03ea8 Make it easier to subclass StdioPath
  • 073fa1e Fix docs build on <3.12
  • 976e6d1 update docs
  • 0979afe newline was only introduced to read_text in python 3.13
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jan 26, 2026
@nllong
Copy link
Member

nllong commented Jan 28, 2026

@dependabot recreate

Bumps the prod-deps group with 2 updates: [geopandas](https://github.com/geopandas/geopandas) and [cyclopts](https://github.com/BrianPugh/cyclopts).


Updates `geopandas` from 0.14.4 to 1.1.2
- [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.1.2)

Updates `cyclopts` from 3.24.0 to 4.5.1
- [Release notes](https://github.com/BrianPugh/cyclopts/releases)
- [Commits](BrianPugh/cyclopts@v3.24.0...v4.5.1)

---
updated-dependencies:
- dependency-name: geopandas
  dependency-version: 1.1.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-deps
- dependency-name: cyclopts
  dependency-version: 4.5.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/pip/prod-deps-1115e687f0 branch from 6e01756 to 88d5e2d Compare January 28, 2026 23:17
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 28, 2026

Looks like these dependencies are no longer being updated by Dependabot, so this is no longer needed.

@dependabot dependabot bot closed this Jan 28, 2026
@dependabot dependabot bot deleted the dependabot/pip/prod-deps-1115e687f0 branch January 28, 2026 23:26
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