Skip to content

Commit

Permalink
ENH: Change intp to int64
Browse files Browse the repository at this point in the history
  • Loading branch information
snitish committed Dec 4, 2024
1 parent aaacc27 commit 4fc5ca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/groupby/methods/test_kurt.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_groupby_kurt_equivalence():

grpwise = [grp.kurt().to_frame(i).T for i, grp in gb]
expected = pd.concat(grpwise, axis=0)
expected.index = expected.index.astype("intp") # 32bit builds
expected.index = expected.index.astype("int64") # 32bit builds
tm.assert_frame_equal(result, expected)


Expand Down

0 comments on commit 4fc5ca2

Please sign in to comment.