MaineDSA / membership_dashboard

Show member data from nationally-provided CSV files
GNU General Public License v3.0
2 stars 2 forks source link

Bump pandera from 0.18.3 to 0.19.2 #92

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps pandera from 0.18.3 to 0.19.2.

Release notes

Sourced from pandera's releases.

Release v0.19.2: Bugfix on correctly checking nullable Floats

What's Changed

Full Changelog: https://github.com/unionai-oss/pandera/compare/v0.19.1...v0.19.2

Release 0.19.1: Bugfixes and docs fixes

What's Changed

New Contributors

Full Changelog: https://github.com/unionai-oss/pandera/compare/v0.19.0...v0.19.1

Release 0.19.0: Polars validation support

✨ Highlights ✨

📣 Pandera now supports validation of polars.DataFrame and polars.LazyFrame 🐻‍❄️!

You can now do this:

import pandera.polars as pa
import polars as pl

class Schema(pa.DataFrameModel): state: str city: str price: int = pa.Field(in_range={"min_value": 5, "max_value": 20})

lf = pl.LazyFrame( { '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(lf).collect() </tr></table>

... (truncated)

Commits
  • 63140c9 bugfix: nullable check float dtype handles nan and null (#1627)
  • 0faae07 use google colab instead of jupyterlite (#1618)
  • 30e5f0f Bugfix/1616: Polars data container validation (#1623)
  • 612d25c add tests for polars decorators (#1615)
  • b11cc4d rewrite Check class docstrings to remove pandas assumption (#1614)
  • 4724036 fix: properly coerce dtypes for columns with regex=True (#1602)
  • 8c513b6 update docs for polars (#1613)
  • dcb58c5 bugfix: column-level coercion is properly implemented (#1612)
  • 59d71eb Dataframe column schema (#1611)
  • d058f71 Create a common DataFrameSchema class, update mypy used in pre-commit (#1609)
  • 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 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)