Niels Bantilan
Niels Bantilan
thanks @imseananriley ! looks like there are some failing unit tests. please take a look at the [contributing guide](https://pandera.readthedocs.io/en/stable/CONTRIBUTING.html#contributing-to-the-codebase) to see how to run local tests. You'll need to install...
closing this since #1904 was merged
Can you try using the polars native Decimal dtype? https://docs.pola.rs/api/python/stable/reference/api/polars.datatypes.Decimal.html#polars.datatypes.Decimal
So in pandera, element wise checks use `map_elements` under the hood: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.map_elements.html#polars-expr-map-elements And it looks like it currently does not support mapping a function over decimal dtype: ```python ( pl.LazyFrame({"a":...
yeah, it'll fail for any element-wise check that operates on decimal types.
@elyase would you mind adding more of a description to this issue? ``` **Is your feature request related to a problem? Please describe.** A clear and concise description of what...
thanks @kunalgupta02209 ! do we need to add a conditional here to change for pydantic v2? Pandera supports v2 and
Also, can you please follow [these steps](https://pandera.readthedocs.io/en/stable/CONTRIBUTING.html#dco-signing-commits) to make the DCO commit signing check to pass?
friendly ping, please see [comment](https://github.com/unionai-oss/pandera/pull/1664#issuecomment-2184050941) to how to address test failures
the problem is that ```python pd.DataFrame({"test": [None, None, None]}) ``` is interpreted by pandas as an object column. In this case, pandera is behaving as expected, since the `test` column...