Skip to content

Bump pandera from 0.22.1 to 0.25.0#387

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/pandera-0.25.0
Closed

Bump pandera from 0.22.1 to 0.25.0#387
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/pandera-0.25.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 9, 2025

Bumps pandera from 0.22.1 to 0.25.0.

Release notes

Sourced from pandera's releases.

v0.25.0: 🦩 Support Ibis table validation

⭐️ Highlight

Pandera now supports Ibis 🦩! You can now validate data on all available ibis backends using the pandera.ibis module.

In-memory table example:

import ibis
import pandera.ibis as pa
class Schema(pa.DataFrameModel):
state: str
city: str
price: int = pa.Field(in_range={"min_value": 5, "max_value": 20})
t = ibis.memtable(
{
'state': ['FL','FL','FL','CA','CA','CA'],
'city': [
'Orlando',
'Miami',
'Tampa',
'San Francisco',
'Los Angeles',
'San Diego',
],
'price': [8, 12, 10, 16, 20, 18],
}
)
Schema.validate(t).execute()

Sqlite example:

con = ibis.sqlite.connect()
t = con.create_table(
    "table",
    schema=ibis.schema(dict(state="string", city="string", price="int64"))
)
con.insert(
"table",
obj=[
("FL", "Orlando", 8),
("FL", "Miami", 12),
("FL", "Tampa", 10),
("CA", "San Francisco", 16),
("CA", "Los Angeles", 20),
("CA", "San Diego", 18),
</tr></table>

... (truncated)

Commits
  • c49b18f [ibis 🦩] check backend: use positional join for duckdb and polars, fix ibis D...
  • ad8f08d [ibis 🦩] remove inplace=True in column validate call (#2068)
  • 37d6385 DataFrameSchema.update_index correctly sets title, description, and metadata ...
  • f4fe5ac Set validation scope for pandas run_checks methods (#2003)
  • 971cae8 Allow strict='filter' and coerce='True' at the same time for PySpark schemas....
  • 95dd3e9 handle empty dataframes with PydanticModel: show warning (#2066)
  • f9b0af5 bugfix: fix format_vectorized_error_message to properly format nested pyarr...
  • 2e355f7 Add unit test suite for Ibis components, fix a bug (#2065)
  • dcd9752 Implement binary and boolean types (and test them) (#2064)
  • a5e594b Implement regex option and add additional checks (#2061)
  • 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)

Bumps [pandera](https://github.com/pandera-dev/pandera) from 0.22.1 to 0.25.0.
- [Release notes](https://github.com/pandera-dev/pandera/releases)
- [Commits](unionai-oss/pandera@v0.22.1...v0.25.0)

---
updated-dependencies:
- dependency-name: pandera
  dependency-version: 0.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jul 9, 2025
@github-actions
Copy link

github-actions bot commented Jul 9, 2025

Coverage report

This PR does not seem to contain any modification to coverable code.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 13, 2025

Superseded by #397.

@dependabot dependabot bot closed this Aug 13, 2025
@dependabot dependabot bot deleted the dependabot/pip/pandera-0.25.0 branch August 13, 2025 05:28
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.

0 participants