File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ Fixed regressions
16
16
~~~~~~~~~~~~~~~~~
17
17
18
18
- Fixed regression in :meth: `DataFrame.to_excel ` when ``columns `` kwarg is passed (:issue: `31677 `)
19
+ - Fixed regression in :meth: `Series.align ` when ``other `` is a DataFrame and ``method `` is not None (:issue: `31785 `)
19
20
-
20
21
21
22
.. ---------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -8360,9 +8360,7 @@ def _align_frame(
8360
8360
left = self ._ensure_type (
8361
8361
left .fillna (method = method , axis = fill_axis , limit = limit )
8362
8362
)
8363
- right = self ._ensure_type (
8364
- right .fillna (method = method , axis = fill_axis , limit = limit )
8365
- )
8363
+ right = right .fillna (method = method , axis = fill_axis , limit = limit )
8366
8364
8367
8365
# if DatetimeIndex have different tz, convert to UTC
8368
8366
if is_datetime64tz_dtype (left .index ):
You can’t perform that action at this time.
0 commit comments