Closed dhirschfeld closed 6 years ago
In dshape_form_pandas
there is an explicit test for categorical
:
https://github.com/blaze/odo/blob/ba84238eb8dbcac4784ae7ebf62988d7e163c283/odo/backends/pandas.py#L20-L33
But this is failing for me since the definition of categorical: https://github.com/blaze/odo/blob/ba84238eb8dbcac4784ae7ebf62988d7e163c283/odo/backends/pandas.py#L17
...gives a property object rather than an actual dtype:
In [5]: pd.Categorical.dtype
Out[5]: <property at 0x4843818>
In [6]: type(pd.Categorical.dtype)
Out[6]: property
This is with pandas
0.21.0 from conda-forge.
test_discover
is broken for me: