Skip to content

Commit

Permalink
add whatsnew num
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Jul 28, 2023
1 parent 15591da commit 4f96ca9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v2.1.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ Reshaping
^^^^^^^^^
- Bug in :func:`concat` coercing to ``object`` dtype when one column has ``pa.null()`` dtype (:issue:`53702`)
- Bug in :func:`crosstab` when ``dropna=False`` would not keep ``np.nan`` in the result (:issue:`10772`)
- Bug in :func:`melt` where the ``variable`` column would lose extension dtypes (:issue:`?`)
- Bug in :func:`melt` where the ``variable`` column would lose extension dtypes (:issue:`54297`)
- Bug in :func:`merge_asof` raising ``KeyError`` for extension dtypes (:issue:`52904`)
- Bug in :func:`merge_asof` raising ``ValueError`` for data backed by read-only ndarrays (:issue:`53513`)
- Bug in :func:`merge_asof` with ``left_index=True`` or ``right_index=True`` with mismatched index dtypes giving incorrect results in some cases instead of raising ``MergeError`` (:issue:`53870`)
Expand Down
1 change: 1 addition & 0 deletions pandas/tests/reshape/test_melt.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,7 @@ def test_melt_ea_dtype(self, dtype):
tm.assert_frame_equal(result, expected)

def test_melt_ea_columns(self):
# GH 54297
df = DataFrame(
{
"A": {0: "a", 1: "b", 2: "c"},
Expand Down

0 comments on commit 4f96ca9

Please sign in to comment.