File tree 2 files changed +13
-0
lines changed 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,18 @@ users upgrade to this version.
56
56
57
57
Highlights include:
58
58
59
+ - Release the Global Interpreter Lock (GIL) on some cython operations, see :ref: `here <whatsnew_0170.gil >`
60
+ - The sorting API has been revamped to remove some long-time inconsistencies, see :ref: `here <whatsnew_0170.api_breaking.sorting >`
61
+ - The default for ``to_datetime `` will now be to ``raise `` when presented with unparseable formats,
62
+ previously this would return the original input, see :ref: `here <whatsnew_0170.api_breaking.to_datetime >`
63
+ - The default for ``dropna `` in ``HDFStore `` has changed to ``False ``, to store by default all rows even
64
+ if they are all ``NaN ``, see :ref: `here <whatsnew_0170.api_breaking.hdf_dropna >`
65
+ - Support for ``Series.dt.strftime `` to generate formatted strings for datetime-likes, see :ref: `here <whatsnew_0170.strftime >`
66
+ - Development installed versions of pandas will now have ``PEP440 `` compliant version strings (:issue: `9518 `)
67
+ - Development support for benchmarking with the `Air Speed Velocity library <https://github.com/spacetelescope/asv/ >`_ (:issue: `8316 `)
68
+ - Support for reading SAS xport files, see :ref: `here <whatsnew_0170.enhancements.sas_xport >`
69
+ - Removal of the automatic TimeSeries broadcasting, deprecated since 0.8.0, see :ref: `here <whatsnew_0170.prior_deprecations >`
70
+
59
71
See the :ref: `v0.17.0 Whatsnew <whatsnew_0170 >` overview for an extensive list
60
72
of all enhancements and bugs that have been fixed in 0.17.0.
61
73
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ Highlights include:
36
36
if they are all ``NaN``, see :ref:`here <whatsnew_0170.api_breaking.hdf_dropna>`
37
37
- Support for ``Series.dt.strftime`` to generate formatted strings for datetime-likes, see :ref:`here <whatsnew_0170.strftime>`
38
38
- Development installed versions of pandas will now have ``PEP440`` compliant version strings (:issue:`9518`)
39
+ - Development support for benchmarking with the `Air Speed Velocity library <https://github.com/spacetelescope/asv/>`_ (:issue:`8316`)
39
40
- Support for reading SAS xport files, see :ref:`here <whatsnew_0170.enhancements.sas_xport>`
40
41
- Removal of the automatic TimeSeries broadcasting, deprecated since 0.8.0, see :ref:`here <whatsnew_0170.prior_deprecations>`
41
42
You can’t perform that action at this time.
0 commit comments