We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4851e5 commit 54c880cCopy full SHA for 54c880c
pandas/core/indexes/interval.py
@@ -1423,6 +1423,9 @@ def interval_range(
1423
isinstance(start, (float, np.float16))
1424
or isinstance(end, (float, np.float16))
1425
or isinstance(freq, (float, np.float16))
1426
+ or isinstance(start, (float, np.float32))
1427
+ or isinstance(end, (float, np.float32))
1428
+ or isinstance(freq, (float, np.float32))
1429
):
1430
dtype = np.dtype("float64")
1431
elif (
0 commit comments