Skip to content

Commit c45ef0e

Browse files
committed
Use 2.4.0.dev0
1 parent ef25a0f commit c45ef0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/copy_view/test_methods.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -918,7 +918,7 @@ def test_round(decimals):
918918

919919
assert tm.shares_memory(get_array(df2, "b"), get_array(df, "b"))
920920
# TODO: Make inplace by using out parameter of ndarray.round?
921-
if decimals >= 0 and Version(np.__version__) <= Version("2.3"):
921+
if decimals >= 0 and Version(np.__version__) < Version("2.4.0.dev0"):
922922
# Ensure lazy copy if no-op
923923
# TODO: Cannot rely on Numpy returning view after version 2.3
924924
assert np.shares_memory(get_array(df2, "a"), get_array(df, "a"))

0 commit comments

Comments
 (0)