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
BUG: Fixes pd.merge issue with columns of dtype numpy.uintc on windows (pandas-dev#60145)
* bug fix for numpy.uintc in merge operations on windows
Added pytest test case to verify correct behavior with numpy.uintc dtype
* Formatting changes after running pre-commit
* Added tests for numpy.intc
* added whatsnew note
* pre-commit automatic changes and also made changes to test_merge.py file to make pandas namespace consistent
* removed comment
* added the deleted whatsnew note back
* better whatsnew note
Co-authored-by: Matthew Roeschke <[email protected]>
---------
Co-authored-by: Matthew Roeschke <[email protected]>
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v3.0.0.rst
+1
Original file line number
Diff line number
Diff line change
@@ -739,6 +739,7 @@ Reshaping
739
739
- Bug in :meth:`DataFrame.join` when a :class:`DataFrame` with a :class:`MultiIndex` would raise an ``AssertionError`` when :attr:`MultiIndex.names` contained ``None``. (:issue:`58721`)
740
740
- Bug in :meth:`DataFrame.merge` where merging on a column containing only ``NaN`` values resulted in an out-of-bounds array access (:issue:`59421`)
741
741
- Bug in :meth:`DataFrame.unstack` producing incorrect results when ``sort=False`` (:issue:`54987`, :issue:`55516`)
742
+
- Bug in :meth:`DataFrame.merge` when merging two :class:`DataFrame` on ``intc`` or ``uintc`` types on Windows (:issue:`60091`, :issue:`58713`)
742
743
- Bug in :meth:`DataFrame.pivot_table` incorrectly subaggregating results when called without an ``index`` argument (:issue:`58722`)
743
744
- Bug in :meth:`DataFrame.unstack` producing incorrect results when manipulating empty :class:`DataFrame` with an :class:`ExtentionDtype` (:issue:`59123`)
0 commit comments