Skip to content

Commit c07e91e

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

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pandas/core/indexes/base.py

+5
Original file line numberDiff line numberDiff line change
@@ -2755,6 +2755,11 @@ 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+
try:
2760+
lvals[0] < other_diff[0]
2761+
except TypeError as e:
2762+
pass
27582763
else:
27592764
result = lvals
27602765

0 commit comments

Comments
 (0)