Niels Bantilan

Results 222 comments of Niels Bantilan

hi @zak1632, thanks for reporting this issue! Yeah, basically we need to add the `ordered` key in `_serialize_schema`: - https://github.com/unionai-oss/pandera/blob/master/pandera/io.py#L156 And then add an `ordered=serialized_schema.get("ordered", False) in `_deserialize_schema`: - https://github.com/unionai-oss/pandera/blob/master/pandera/io.py#L268...

thanks @hsorsky! just wanted to understand the use case better, see: https://github.com/unionai-oss/pandera/issues/940#issuecomment-1248186646

thanks for the contribution @davidandreoletti ! 🚀

hi @chills42, adding official support for pandas 1.5 basically means we need to add that as an explicit version in the ci build: https://github.com/unionai-oss/pandera/blob/master/.github/workflows/ci-tests.yml#L95 Steps: 1. Create a virtual env...

@KiaXdice looks like some of the tests are broken, https://github.com/unionai-oss/pandera/actions/runs/2917799578/jobs/4940606987. Did these errors come up when running `pytest` locally?

hey @KiaXdice friendly ping on > @KiaXdice looks like some of the tests are broken, https://github.com/unionai-oss/pandera/actions/runs/2917799578/jobs/4940606987. > > Did these errors come up when running pytest locally?

thanks @dstumPY ! You'll also need to update some of the `schema_inference.rst ` docs page that outputs the yaml schema, see: https://github.com/unionai-oss/pandera/actions/runs/3048138238/jobs/5015516047

This is definitely a bug! Looking into a fix... In the mean time, you can use the `pandas_engine` datatype here https://pandera.readthedocs.io/en/stable/reference/generated/pandera.engines.pandas_engine.Decimal.html#pandera.engines.pandas_engine.Decimal ```python import pandera as pa from pandera.engines.pandas_engine import Decimal...

@tpcgold @NathanEmb #956 should address this issue

The `DataTypes` extension api would allow support for Enums, see: https://pandera.readthedocs.io/en/stable/dtypes.html One of the main design choices here would be: how to represent enums? There could be several options to...