What’s new in 1.2.5 (June 22, 2021)#
These are the changes in pandas 1.2.5. See Release notes for a full changelog including other versions of pandas.
Fixed regressions#
Fixed regression in
concat()between twoDataFramewhere one has anIndexthat is all-None and the other isDatetimeIndexincorrectly raising (GH 40841)Fixed regression in
DataFrame.sum()andDataFrame.prod()whenmin_countandnumeric_onlyare both given (GH 41074)Fixed regression in
read_csv()when usingmemory_map=Truewith an non-UTF8 encoding (GH 40986)Fixed regression in
DataFrame.replace()andSeries.replace()when the values to replace is a NumPy float array (GH 40371)Fixed regression in
ExcelFile()when a corrupt file is opened but not closed (GH 41778)Fixed regression in
DataFrame.astype()withdtype=strfailing to convertNaNin categorical columns (GH 41797)