Skip to content

build(deps): update pandera[polars] requirement from >=0.25.0 to >=0.31.0#90

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/uv/pandera-polars--gte-0.31.0
Closed

build(deps): update pandera[polars] requirement from >=0.25.0 to >=0.31.0#90
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/uv/pandera-polars--gte-0.31.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Updates the requirements on pandera[polars] to permit the latest version.

Release notes

Sourced from pandera[polars]'s releases.

v0.31.0: Validate Xarray DataArray, Dataset, and DataTree

⭐️ Highlights

This is the release for all of you geospatial and multidimensional array-handling folks out there.

xarray support

Pandera now provides full support for xarray 🚀

Write a DatasetSchema with the object-based API

import numpy as np
import xarray as xr
import pandera.xarray as pa
schema = pa.DatasetSchema(
data_vars={
"temperature": pa.DataVar(dtype=np.float64, dims=("x", "y")),
"pressure": pa.DataVar(dtype=np.float64, dims=("x", "y")),
},
coords={"x": pa.Coordinate(dtype=np.float64)},
)
ds = xr.Dataset(
{
"temperature": (("x", "y"), np.random.rand(3, 4)),
"pressure": (("x", "y"), np.random.rand(3, 4)),
},
coords={"x": np.arange(3, dtype=np.float64)},
)
schema.validate(ds)

Or a DatasetModel with the class-based API:

from pandera.typing.xarray import Coordinate
class Surface(pa.DatasetModel):
temperature: np.float64 = pa.Field(dims=("x", "y"))
pressure: np.float64 = pa.Field(dims=("x", "y"))
x: Coordinate[np.float64]
Surface.validate(ds)

First-class geopandas support

This release also adds first-class GeoDataFrameSchema and GeoDataFrameModel APIs for geopandas: https://pandera.readthedocs.io/en/latest/geopandas.html

... (truncated)

Commits
  • 1921c1d Rename test functions for clarity
  • 0502361 test(pyspark): add str_length regressions for issues #1311 and #1314
  • 7773eb8 fix: support Spark Connect DataFrame in cache_check_obj decorator
  • 52f9805 tests(mypy): add polars Column Decimal/Struct typing regression
  • e61e02c fix(geopandas): re-export errors in module all
  • 3d95fc1 fix(pandas): export errors in pandera.pandas public API
  • 1370d6d docs: fix xarray guide link in banner
  • 356f1a6 docs: update xarray integration info for v0.31.0
  • 99fbb48 fix(pandas): remove deprecated applymap from parser backend (#2281)
  • ebf9766 Fix DataFrame.from_records parser execution with coerce=True (#2279)
  • 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 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)

Updates the requirements on [pandera[polars]](https://github.com/pandera-dev/pandera) to permit the latest version.
- [Release notes](https://github.com/pandera-dev/pandera/releases)
- [Commits](unionai-oss/pandera@v0.25.0...v0.31.0)

---
updated-dependencies:
- dependency-name: pandera[polars]
  dependency-version: 0.31.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Apr 14, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 15, 2026

Superseded by #93.

@dependabot dependabot Bot closed this Apr 15, 2026
@dependabot dependabot Bot deleted the dependabot/uv/pandera-polars--gte-0.31.0 branch April 15, 2026 22:47
@github-actions
Copy link
Copy Markdown

⚠️ Branch Deletion Warning

This branch (dependabot/uv/pandera-polars--gte-0.31.0) will be automatically deleted in 2 minutes.

To prevent deletion, add the do not auto-delete label to this PR before the deletion occurs.

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:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants