Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 2, 2026

Updates the requirements on pandera to permit the latest version.

Release notes

Sourced from pandera's releases.

Release 0.29.0: support list, dict, and tuple of dataframes

⭐️ Highlight

Pandera now supports collection types containing dataframes, shoutout to @​garethellis0 with an amazing first contribution!

@pa.check_types
def process_tuple_and_return_dict(
    dfs: tuple[DataFrame[OnlyZeroesSchema], DataFrame[OnlyOnesSchema]],
) -> dict[str, DataFrame[OnlyZeroesSchema]]:
    return {
        "foo": dfs[0],
        "bar": dfs[0]
    }
result = process_tuple_and_return_dict((
pd.DataFrame({"a": [0, 0]}),
pd.DataFrame({"a": [1, 1]}),
))
print(result)

What's Changed

New Contributors

Full Changelog: unionai-oss/pandera@v0.28.1...v0.29.0

Commits
  • 7614754 Add map datatype to the Ibis engine implementation (#2206)
  • 8b87d0f pin sphinx version (#2208)
  • dc10908 feature/1078: Added Support For List, Dict, And Tuples Of Dataframes (#2204)
  • 71f860a fix bugs in Check interface and Field (#2203)
  • 82096dd schema descriptor should raise AttributeError if build_schema_ is not impleme...
  • 7055cbd Avoid full materialization of levels in failing MultiIndex validations (#2187)
  • b69c6fa Update .git-blame-ignore-revs to add Ruff refactor (#2199)
  • 42a2b34 Support the Decimal data type in the Ibis engine (#2194)
  • 8c3b46c Re-implement improvements to str_length check (#2198)
  • 8abbf26 Use get_annotations instead of direct __annotations__ access (#2196)
  • 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 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](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.20.1...v0.29.0)

---
updated-dependencies:
- dependency-name: pandera
  dependency-version: 0.29.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 2, 2026
@rmi-auto-merge-helper rmi-auto-merge-helper bot merged commit 2184b69 into main Feb 2, 2026
14 of 15 checks passed
@dependabot dependabot bot deleted the dependabot/pip/main/pandera-gte-0.20.1-and-lt-0.30 branch February 2, 2026 05:41
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants