Skip to content

Commit a2ca9f3

Browse files
DOC: some rewording of highlights
@jreback I proofread the highlights and made some edits (but language is always a bit subjective). Comments? Author: Joris Van den Bossche <[email protected]> Closes #12323 from jorisvandenbossche/doc-highlights and squashes the following commits: e22db0c [Joris Van den Bossche] DOC: some rewording of highlights
1 parent 8a485f0 commit a2ca9f3

File tree

2 files changed

+30
-20
lines changed

2 files changed

+30
-20
lines changed

doc/source/release.rst

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,20 @@ users upgrade to this version.
4848

4949
Highlights include:
5050

51-
- Window functions are now methods on ``.groupby`` like objects, see :ref:`here <whatsnew_0180.enhancements.moments>`.
52-
- ``pd.test()`` top-level nose test runner is available (:issue:`4327`)
53-
- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index`` for memory savings, see :ref:`here <whatsnew_0180.enhancements.rangeindex>`.
54-
- API breaking ``.resample`` changes to make it more ``.groupby`` like, see :ref:`here <whatsnew_0180.breaking.resample>`.
55-
- Removal of support for deprecated float indexers; these will now raise a ``TypeError``, see :ref:`here <whatsnew_0180.enhancements.float_indexers>`.
56-
- The ``.to_xarray()`` function has been added for compatibility with the `xarray package <http://xarray.pydata.org/en/stable/>`__, see :ref:`here <whatsnew_0180.enhancements.xarray>`.
57-
- Addition of the :ref:`.str.extractall() method <whatsnew_0180.enhancements.extract>`, and API changes to the :ref:`.str.extract() method <whatsnew_0180.enhancements.extract>` and :ref:`.str.cat() method <whatsnew_0180.enhancements.strcat>`.
51+
- Moving and expanding window functions are now methods on Series and DataFrame,
52+
similar to ``.groupby``, see :ref:`here <whatsnew_0180.enhancements.moments>`.
53+
- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index``
54+
for memory savings, see :ref:`here <whatsnew_0180.enhancements.rangeindex>`.
55+
- API breaking change to the ``.resample`` method to make it more ``.groupby``
56+
like, see :ref:`here <whatsnew_0180.breaking.resample>`.
57+
- Removal of support for positional indexing with floats, which was deprecated
58+
since 0.14.0. This will now raise a ``TypeError``, see :ref:`here <whatsnew_0180.enhancements.float_indexers>`.
59+
- The ``.to_xarray()`` function has been added for compatibility with the
60+
`xarray package <http://xarray.pydata.org/en/stable/>`__, see :ref:`here <whatsnew_0180.enhancements.xarray>`.
61+
- Addition of the :ref:`.str.extractall() method <whatsnew_0180.enhancements.extract>`,
62+
and API changes to the :ref:`.str.extract() method <whatsnew_0180.enhancements.extract>`
63+
and :ref:`.str.cat() method <whatsnew_0180.enhancements.strcat>`.
64+
- ``pd.test()`` top-level nose test runner is available (:issue:`4327`).
5865

5966
See the :ref:`v0.18.0 Whatsnew <whatsnew_0180>` overview for an extensive list
6067
of all enhancements and bugs that have been fixed in 0.17.1.

doc/source/whatsnew/v0.18.0.txt

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,25 @@ users upgrade to this version.
99

1010
.. warning::
1111

12-
pandas >= 0.18.0 will no longer support compatibility with Python version 2.6 (:issue:`7718`)
13-
14-
.. warning::
15-
16-
pandas >= 0.18.0 will no longer support compatibility with Python version 3.3 (:issue:`11273`)
12+
pandas >= 0.18.0 no longer supports compatibility with Python version 2.6
13+
and 3.3 (:issue:`7718`, :issue:`11273`)
1714

1815
Highlights include:
1916

20-
- Window functions are now methods on ``.groupby`` like objects, see :ref:`here <whatsnew_0180.enhancements.moments>`.
21-
- ``pd.test()`` top-level nose test runner is available (:issue:`4327`)
22-
- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index`` for memory savings, see :ref:`here <whatsnew_0180.enhancements.rangeindex>`.
23-
- API breaking ``.resample`` changes to make it more ``.groupby`` like, see :ref:`here <whatsnew_0180.breaking.resample>`.
24-
- Removal of support for deprecated float indexers; these will now raise a ``TypeError``, see :ref:`here <whatsnew_0180.enhancements.float_indexers>`.
25-
- The ``.to_xarray()`` function has been added for compatibility with the `xarray package <http://xarray.pydata.org/en/stable/>`__, see :ref:`here <whatsnew_0180.enhancements.xarray>`.
26-
- Addition of the :ref:`.str.extractall() method <whatsnew_0180.enhancements.extractall>`, and API changes to the :ref:`.str.extract() method <whatsnew_0180.enhancements.extract>` and :ref:`.str.cat() method <whatsnew_0180.enhancements.strcat>`.
27-
17+
- Moving and expanding window functions are now methods on Series and DataFrame,
18+
similar to ``.groupby``, see :ref:`here <whatsnew_0180.enhancements.moments>`.
19+
- Adding support for a ``RangeIndex`` as a specialized form of the ``Int64Index``
20+
for memory savings, see :ref:`here <whatsnew_0180.enhancements.rangeindex>`.
21+
- API breaking change to the ``.resample`` method to make it more ``.groupby``
22+
like, see :ref:`here <whatsnew_0180.breaking.resample>`.
23+
- Removal of support for positional indexing with floats, which was deprecated
24+
since 0.14.0. This will now raise a ``TypeError``, see :ref:`here <whatsnew_0180.enhancements.float_indexers>`.
25+
- The ``.to_xarray()`` function has been added for compatibility with the
26+
`xarray package <http://xarray.pydata.org/en/stable/>`__, see :ref:`here <whatsnew_0180.enhancements.xarray>`.
27+
- Addition of the :ref:`.str.extractall() method <whatsnew_0180.enhancements.extract>`,
28+
and API changes to the :ref:`.str.extract() method <whatsnew_0180.enhancements.extract>`
29+
and :ref:`.str.cat() method <whatsnew_0180.enhancements.strcat>`.
30+
- ``pd.test()`` top-level nose test runner is available (:issue:`4327`).
2831

2932
Check the :ref:`API Changes <whatsnew_0180.api_breaking>` and :ref:`deprecations <whatsnew_0180.deprecations>` before updating.
3033

0 commit comments

Comments
 (0)