These are the changes in pandas 1.0.1. See Release notes for a full changelog including other versions of pandas.
Fixed regression in DataFrame setting values with a slice (e.g. df[-4:] = 1) indexing by label instead of position (GH31469)
DataFrame
df[-4:] = 1
Fixed regression when indexing a Series or DataFrame indexed by DatetimeIndex with a slice containing a datetime.date (GH31501)
Series
DatetimeIndex
datetime.date
Fixed regression in DataFrame.__setitem__ raising an AttributeError with a MultiIndex and a non-monotonic indexer (GH31449)
DataFrame.__setitem__
AttributeError
MultiIndex
Fixed regression in Series multiplication when multiplying a numeric Series with >10000 elements with a timedelta-like scalar (GH31457)
Fixed regression in .groupby().agg() raising an AssertionError for some reductions like min on object-dtype columns (GH31522)
.groupby().agg()
AssertionError
min
Fixed regression in .groupby() aggregations with categorical dtype using Cythonized reduction functions (e.g. first) (GH31450)
.groupby()
first
Fixed regression in GroupBy.apply() if called with a function which returned a non-pandas non-scalar object (e.g. a list or numpy array) (GH31441)
GroupBy.apply()
Fixed regression in DataFrame.groupby() whereby taking the minimum or maximum of a column with period dtype would raise a TypeError. (GH31471)
DataFrame.groupby()
TypeError
Fixed regression in DataFrame.groupby() with an empty DataFrame grouping by a level of a MultiIndex (GH31670).
Fixed regression in DataFrame.apply() with object dtype and non-reducing function (GH31505)
DataFrame.apply()
Fixed regression in to_datetime() when parsing non-nanosecond resolution datetimes (GH31491)
to_datetime()
Fixed regression in to_csv() where specifying an na_rep might truncate the values written (GH31447)
to_csv()
na_rep
Fixed regression in Categorical construction with numpy.str_ categories (GH31499)
Categorical
numpy.str_
Fixed regression in DataFrame.loc() and DataFrame.iloc() when selecting a row containing a single datetime64 or timedelta64 column (GH31649)
DataFrame.loc()
DataFrame.iloc()
datetime64
timedelta64
Fixed regression where setting pd.options.display.max_colwidth was not accepting negative integer. In addition, this behavior has been deprecated in favor of using None (GH31532)
pd.options.display.max_colwidth
None
Fixed regression in objTOJSON.c fix return-type warning (GH31463)
Fixed regression in qcut() when passed a nullable integer. (GH31389)
qcut()
Fixed regression in assigning to a Series using a nullable integer dtype (GH31446)
Fixed performance regression when indexing a DataFrame or Series with a MultiIndex for the index using a list of labels (GH31648)
Fixed regression in read_csv() used in file like object RawIOBase is not recognize encoding option (GH31575)
read_csv()
RawIOBase
encoding
Support for negative integer for pd.options.display.max_colwidth is deprecated in favor of using None (GH31532)
Datetimelike
Fixed bug in to_datetime() raising when cache=True and out-of-bound values are present (GH31491)
cache=True
Numeric
Bug in dtypes being lost in DataFrame.__invert__ (~ operator) with mixed dtypes (GH31183) and for extension-array backed Series and DataFrame (GH23087)
DataFrame.__invert__
~
Plotting
Plotting tz-aware timeseries no longer gives UserWarning (GH31205)
Interval
Bug in Series.shift() with interval dtype raising a TypeError when shifting an interval array of integers or datetimes (GH34195)
Series.shift()
interval
A total of 15 people contributed patches to this release. People with a “+” by their names contributed a patch for the first time.
Daniel Saxton
Guillaume Lemaitre
Jeff Reback
Joris Van den Bossche
Kaiqi Dong
Marco Gorelli
MeeseeksMachine
Pandas Development Team
Sebastián Vanrell +
Tom Augspurger
William Ayd
alimcmaster1
jbrockmendel
paihu +
proost