pandera icon indicating copy to clipboard operation
pandera copied to clipboard

Add missing `type` field for the `Int32` data type

Open deepyaman opened this issue 1 year ago • 2 comments

Just noticed this bug as I was working on type tests, just in case anybody runs into issue with it

deepyaman avatar Aug 01 '24 01:08 deepyaman

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 92.77%. Comparing base (4df61da) to head (2256c83). Report is 148 commits behind head on ibis-dev.

Additional details and impacted files
@@             Coverage Diff              @@
##           ibis-dev    #1771      +/-   ##
============================================
- Coverage     94.29%   92.77%   -1.52%     
============================================
  Files            91      130      +39     
  Lines          7024     9451    +2427     
============================================
+ Hits           6623     8768    +2145     
- Misses          401      683     +282     

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

codecov[bot] avatar Aug 01 '24 02:08 codecov[bot]

error seems unrelated to this PR:

    @classmethod
    def infer_column(cls, column: Sequence) -> dt.DataType:
        """Infer the ibis type of a sequence."""
        import pyarrow as pa
>       import pyarrow_hotfix  # noqa: F401
E       ModuleNotFoundError: No module named 'pyarrow_hotfix'

cosmicBboy avatar Aug 27 '24 14:08 cosmicBboy