diff --git a/doc/source/whatsnew/v0.23.5.txt b/doc/source/whatsnew/v0.23.5.txt deleted file mode 100644 index 8f4b1a13c2e9d..0000000000000 --- a/doc/source/whatsnew/v0.23.5.txt +++ /dev/null @@ -1,54 +0,0 @@ -.. _whatsnew_0235: - -v0.23.5 (TBD 0, 2018) ---------------------- - -This is a minor bug-fix release in the 0.23.x series and includes some small regression fixes -and bug fixes. We recommend that all users upgrade to this version. - -.. warning:: - - Starting January 1, 2019, pandas feature releases will support Python 3 only. - See :ref:`install.dropping-27` for more. - -.. contents:: What's new in v0.23.5 - :local: - :backlinks: none - -.. _whatsnew_0235.fixed_regressions: - -Fixed Regressions -~~~~~~~~~~~~~~~~~ - -- Constructing a DataFrame with an index argument that wasn't already an - instance of :class:`~pandas.core.Index` was broken in `4efb39f - `_ (:issue:`22227`). -- Calling :meth:`DataFrameGroupBy.rank` and :meth:`SeriesGroupBy.rank` with empty groups - and ``pct=True`` was raising a ``ZeroDivisionError`` due to `c1068d9 - `_ (:issue:`22519`) -- -- - - -Development -~~~~~~~~~~~ -- The minimum required pytest version has been increased to 3.6 (:issue:`22319`) - -.. _whatsnew_0235.bug_fixes: - -Bug Fixes -~~~~~~~~~ - -**Groupby/Resample/Rolling** - -- Bug in :meth:`DataFrame.resample` when resampling ``NaT`` in ``TimeDeltaIndex`` (:issue:`13223`). -- - -**Missing** - -- -- - -**I/O** - -- Bug in :func:`read_csv` that caused it to raise ``OverflowError`` when trying to use 'inf' as ``na_value`` with integer index column (:issue:`17128`) diff --git a/doc/source/whatsnew/v0.24.0.rst b/doc/source/whatsnew/v0.24.0.rst index 0b2b526dfe9e7..b1780181d8a9c 100644 --- a/doc/source/whatsnew/v0.24.0.rst +++ b/doc/source/whatsnew/v0.24.0.rst @@ -410,6 +410,8 @@ If installed, we now require: +-----------------+-----------------+----------+ | xlrd | 1.0.0 | | +-----------------+-----------------+----------+ +| pytest (dev) | 3.6 | | ++-----------------+-----------------+----------+ Additionally we no longer depend on `feather-format` for feather based storage and replaced it with references to `pyarrow` (:issue:`21639` and :issue:`23053`). @@ -1504,6 +1506,7 @@ Notice how we now instead output ``np.nan`` itself instead of a stringified form - Bug in :meth:`read_excel()` in which ``usecols`` was not being validated for proper column names when passed in as a string (:issue:`20480`) - Bug in :meth:`DataFrame.to_dict` when the resulting dict contains non-Python scalars in the case of numeric data (:issue:`23753`) - :func:`DataFrame.to_string()`, :func:`DataFrame.to_html()`, :func:`DataFrame.to_latex()` will correctly format output when a string is passed as the ``float_format`` argument (:issue:`21625`, :issue:`22270`) +- Bug in :func:`read_csv` that caused it to raise ``OverflowError`` when trying to use 'inf' as ``na_value`` with integer index column (:issue:`17128`) Plotting ^^^^^^^^ @@ -1530,6 +1533,8 @@ Groupby/Resample/Rolling - Bug in :meth:`pandas.core.groupby.DataFrameGroupBy.transform` which caused missing values when the input function can accept a :class:`DataFrame` but renames it (:issue:`23455`). - Bug in :func:`pandas.core.groupby.GroupBy.nth` where column order was not always preserved (:issue:`20760`) - Bug in :meth:`pandas.core.groupby.DataFrameGroupBy.rank` with ``method='dense'`` and ``pct=True`` when a group has only one member would raise a ``ZeroDivisionError`` (:issue:`23666`). +- Calling :meth:`DataFrameGroupBy.rank` and :meth:`SeriesGroupBy.rank` with empty groups and ``pct=True`` was raising a ``ZeroDivisionError`` due to `c1068d9 `_ (:issue:`22519`) +- Bug in :meth:`DataFrame.resample` when resampling ``NaT`` in ``TimeDeltaIndex`` (:issue:`13223`). Reshaping ^^^^^^^^^ @@ -1594,6 +1599,7 @@ Other - Checking PEP 3141 numbers in :func:`~pandas.api.types.is_scalar` function returns ``True`` (:issue:`22903`) - Bug in :meth:`DataFrame.combine_first` in which column types were unexpectedly converted to float (:issue:`20699`) - Bug where C variables were declared with external linkage causing import errors if certain other C libraries were imported before Pandas. (:issue:`24113`) +- Constructing a DataFrame with an index argument that wasn't already an instance of :class:`~pandas.core.Index` was broken in `4efb39f `_ (:issue:`22227`). .. _whatsnew_0.24.0.contributors: