ARROW-2589: [Python] Workaround regression in Pandas 0.23.0#2051
ARROW-2589: [Python] Workaround regression in Pandas 0.23.0#2051pitrou wants to merge 1 commit intoapache:masterfrom
Conversation
|
Another possible fix is to replace the "str" dtype with "object", since "str" seemed to be a synonym of "object" before Pandas 0.23.0. @TomAugspurger what do you think? |
|
For test-code like in https://travis-ci.org/apache/arrow/jobs/379652352#L3156, that should be a fine workaround for now. In the future when pandas has a dedicated string type, pandas-dev/pandas#8640 for tracking that (it may happen soon). |
There is a regression (*) in Pandas 0.23.0 that breaks test_parquet.py. Pandas does not have an actual "str" dtype anyway, so pass "object" instead. (*) pandas-dev/pandas#21083
Codecov Report
@@ Coverage Diff @@
## master #2051 +/- ##
==========================================
+ Coverage 87.44% 87.47% +0.02%
==========================================
Files 189 178 -11
Lines 29374 28601 -773
==========================================
- Hits 25686 25018 -668
+ Misses 3688 3583 -105Continue to review full report at Codecov.
|
There is a regression (*) in Pandas 0.23.0 that breaks test_parquet.py.
Pandas does not have an actual "str" dtype anyway, so pass "object" instead.
(*) pandas-dev/pandas#21083