aidh-ms / oicu-extractor

3 stars 0 forks source link

Bump pandera[mypy] from 0.18.3 to 0.19.3 #63

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps pandera[mypy] from 0.18.3 to 0.19.3.

Release notes

Sourced from pandera[mypy]'s releases.

Release 0.19.3: Polars dtype bugfixes

What's Changed

New Contributors

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

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': [ </tr></table>

... (truncated)

Commits
  • d2bfed0 bugfix: timezone-agnostic datetime in polars works in DataFrameModel (#1638)
  • 95e412f Add missing pandas import line. (#1635)
  • be74271 Bugfix/1631: Series[Annotated[...]] DataFrameModel types should correctly cre...
  • 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)
  • 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)