Skip to content

Commit 8d2e40d

Browse files
committed
BUG: workaround failure of pandas-dev#17378 on Windows
1 parent 4cbd7c1 commit 8d2e40d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/core/indexes/base.py

+2
Original file line numberDiff line numberDiff line change
@@ -2755,6 +2755,8 @@ def union(self, other):
27552755
allow_fill=False)
27562756
result = _concat._concat_compat((lvals, other_diff))
27572757

2758+
# Workaround failure of #17378 on Windows
2759+
lvals[0] < other_diff[0]
27582760
else:
27592761
result = lvals
27602762

0 commit comments

Comments
 (0)