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.23.0.txt
-1
Original file line number
Diff line number
Diff line change
@@ -1245,7 +1245,6 @@ Offsets
1245
1245
- Bug in :class:`FY5253` where ``datetime`` addition and subtraction incremented incorrectly for dates on the year-end but not normalized to midnight (:issue:`18854`)
1246
1246
- Bug in :class:`FY5253` where date offsets could incorrectly raise an ``AssertionError`` in arithmetic operations (:issue:`14774`)
1247
1247
1248
-
1249
1248
Numeric
1250
1249
^^^^^^^
1251
1250
- Bug in :class:`Series` constructor with an int or float list where specifying ``dtype=str``, ``dtype='str'`` or ``dtype='U'`` failed to convert the data elements to strings (:issue:`16605`)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.23.4.txt
+10-1
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ v0.23.4
6
6
This is a minor bug-fix release in the 0.23.x series and includes some small regression fixes
7
7
and bug fixes. We recommend that all users upgrade to this version.
8
8
9
+
.. warning::
10
+
11
+
Starting January 1, 2019, pandas feature releases will support Python 3 only.
12
+
See :ref:`install.dropping-27` for more.
9
13
10
14
.. contents:: What's new in v0.23.4
11
15
:local:
@@ -16,7 +20,7 @@ and bug fixes. We recommend that all users upgrade to this version.
16
20
Fixed Regressions
17
21
~~~~~~~~~~~~~~~~~
18
22
19
-
-
23
+
- Python 3.7 with Windows gave all missing values for rolling variance calculations (:issue:`21813`)
20
24
-
21
25
22
26
.. _whatsnew_0234.bug_fixes:
@@ -27,6 +31,7 @@ Bug Fixes
27
31
**Groupby/Resample/Rolling**
28
32
29
33
- Bug where calling :func:`DataFrameGroupBy.agg` with a list of functions including ``ohlc`` as the non-initial element would raise a ``ValueError`` (:issue:`21716`)
34
+
- Bug in ``roll_quantile`` caused a memory leak when calling ``.rolling(...).quantile(q)`` with ``q`` in (0,1) (:issue:`21965`)
30
35
-
31
36
32
37
**Conversion**
@@ -58,3 +63,7 @@ Bug Fixes
58
63
59
64
-
60
65
-
66
+
67
+
**Missing**
68
+
69
+
- Bug in :func:`Series.clip` and :func:`DataFrame.clip` cannot accept list-like threshold containing ``NaN`` (:issue:`19992`)
0 commit comments