You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.17.1.txt
+19-1
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,10 @@ Enhancements
28
28
Other Enhancements
29
29
^^^^^^^^^^^^^^^^^^
30
30
31
+
- ``pd.read_*`` functions can now also accept :class:`python:pathlib.Path`, or :class:`py:py._path.local.LocalPath`
32
+
objects for the ``filepath_or_buffer`` argument. (:issue:`11033`)
33
+
- Improve the error message displayed in :func:`pandas.io.gbq.to_gbq` when the DataFrame does not match the schema of the destination table (:issue:`11359`)
34
+
31
35
.. _whatsnew_0171.api:
32
36
33
37
API changes
@@ -38,6 +42,7 @@ API changes
38
42
- Regression from 0.16.2 for output formatting of long floats/nan, restored in (:issue:`11302`)
39
43
- Prettyprinting sets (e.g. in DataFrame cells) now uses set literal syntax (``{x, y}``) instead of
- Indexing with a null key will raise a ``TypeError``, instead of a ``ValueError`` (:issue:`11356`)
41
46
42
47
.. _whatsnew_0171.deprecations:
43
48
@@ -54,6 +59,13 @@ Performance Improvements
54
59
~~~~~~~~~~~~~~~~~~~~~~~~
55
60
56
61
- Checking monotonic-ness before sorting on an index (:issue:`11080`)
62
+
- ``Series.dropna`` performance improvement when its dtype can't contain ``NaN`` (:issue:`11159`)
63
+
64
+
65
+
- Release the GIL on most datetime field operations (e.g. ``DatetimeIndex.year``, ``Series.dt.year``), normalization, and conversion to and from ``Period``, ``DatetimeIndex.to_period`` and ``PeriodIndex.to_timestamp`` (:issue:`11263`)
66
+
67
+
68
+
- Improved performance to ``to_excel`` (:issue:`11352`)
57
69
58
70
.. _whatsnew_0171.bug_fixes:
59
71
@@ -65,12 +77,18 @@ Bug Fixes
65
77
66
78
- Bug in ``HDFStore.select`` when comparing with a numpy scalar in a where clause (:issue:`11283`)
67
79
80
+
68
81
- Bug in tz-conversions with an ambiguous time and ``.dt`` accessors (:issue:`11295`)
69
82
- Bug in comparisons of Series vs list-likes (:issue:`11339`)
70
83
71
-
- Bug in list-like indexing with a mixed-integer Index (:issue:`11320`)
72
84
85
+
- Bug in ``DataFrame.replace`` with a ``datetime64[ns, tz]`` and a non-compat to_replace (:issue:`11326`, :issue:`11153`)
86
+
87
+
88
+
89
+
- Bug in list-like indexing with a mixed-integer Index (:issue:`11320`)
73
90
91
+
- Bug in ``pivot_table`` with ``margins=True`` when indexes are of ``Categorical`` dtype (:issue:`10993`)
74
92
- Bug in ``DataFrame.plot`` cannot use hex strings colors (:issue:`10299`)
0 commit comments