Skip to content

build(deps): bump pandera in /packages/grid_helpers_pkg#483

Open
dependabot[bot] wants to merge 4 commits into
mainfrom
dependabot/uv/packages/grid_helpers_pkg/uv-85a6f74f18
Open

build(deps): bump pandera in /packages/grid_helpers_pkg#483
dependabot[bot] wants to merge 4 commits into
mainfrom
dependabot/uv/packages/grid_helpers_pkg/uv-85a6f74f18

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown
Contributor

Bumps pandera in /packages/grid_helpers_pkg from 0.22.1 to 0.31.1.

Updates pandera from 0.22.1 to 0.31.1

Release notes

Sourced from pandera's releases.

v0.31.1

What's Changed

Full Changelog: unionai-oss/pandera@v0.31.0...v0.31.1

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]
</tr></table>

... (truncated)

Commits
  • df7cb7d Fix pandera[polars] import without pandas (#2291)
  • 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)
  • Additional commits viewable in compare view

Updates pandera from 0.22.1 to 0.31.1

Release notes

Sourced from pandera's releases.

v0.31.1

What's Changed

Full Changelog: unionai-oss/pandera@v0.31.0...v0.31.1

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]
</tr></table>

... (truncated)

Commits
  • df7cb7d Fix pandera[polars] import without pandas (#2291)
  • 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)
  • Additional commits viewable in compare view

You can trigger a rebase of this PR 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 <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

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [pandera](https://github.com/pandera-dev/pandera) in `/packages/grid_helpers_pkg` from 0.22.1 to 0.31.1.


Updates `pandera` from 0.22.1 to 0.31.1
- [Release notes](https://github.com/pandera-dev/pandera/releases)
- [Commits](unionai-oss/pandera@v0.22.1...v0.31.1)

Updates `pandera` from 0.22.1 to 0.31.1
- [Release notes](https://github.com/pandera-dev/pandera/releases)
- [Commits](unionai-oss/pandera@v0.22.1...v0.31.1)

---
updated-dependencies:
- dependency-name: pandera
  dependency-version: 0.31.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: pandera
  dependency-version: 0.31.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
...

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 May 19, 2026
@dependabot @github

dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown
Contributor Author

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

2 similar comments
@dependabot @github

dependabot Bot commented on behalf of github May 21, 2026

Copy link
Copy Markdown
Contributor Author

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot @github

dependabot Bot commented on behalf of github May 21, 2026

Copy link
Copy Markdown
Contributor Author

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

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.

1 participant