From 7009c94b8f15662c91af7623df4a65a09e829dc5 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Thu, 19 Dec 2019 14:12:19 -0800 Subject: [PATCH] Cleaned up compiler warnings for unsigned comps --- pandas/_libs/intervaltree.pxi.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pandas/_libs/intervaltree.pxi.in b/pandas/_libs/intervaltree.pxi.in index 8cb51be36645e..bb57876c8c121 100644 --- a/pandas/_libs/intervaltree.pxi.in +++ b/pandas/_libs/intervaltree.pxi.in @@ -11,7 +11,6 @@ ctypedef fused scalar_t: float32_t int64_t int32_t - uint64_t # ---------------------------------------------------------------------- # IntervalTree @@ -231,7 +230,7 @@ cdef sort_values_and_indices(all_values, all_indices, subset): {{py: nodes = [] -for dtype in ['float32', 'float64', 'int32', 'int64', 'uint64']: +for dtype in ['float32', 'float64', 'int32', 'int64']: for closed, cmp_left, cmp_right in [ ('left', '<=', '<'), ('right', '<', '<='),