What’s new in 0.25.2 (October 15, 2019)#
These are the changes in pandas 0.25.2. See Release notes for a full changelog including other versions of pandas.
Note
pandas 0.25.2 adds compatibility for Python 3.8 (GH 28147).
Bug fixes#
Indexing#
IO#
Fix regression in notebook display where
<th>tags were missing forDataFrame.indexvalues (GH 28204).Regression in
to_csv()where writing aSeriesorDataFrameindexed by anIntervalIndexwould incorrectly raise aTypeError(GH 28210)Fix
to_csv()withExtensionArraywith list-like values (GH 28840).
GroupBy/resample/rolling#
Bug incorrectly raising an
IndexErrorwhen passing a list of quantiles toDataFrameGroupBy.quantile()(GH 28113).Bug in
GroupBy.shift(),GroupBy.bfill()andGroupBy.ffill()where timezone information would be dropped (GH 19995, GH 27992)