Skip to content

Commit 6b2fdc7

Browse files
committed
makeNumIndex -> makeNumericIndex and refactor makeIntIndex etc.
1 parent 2701118 commit 6b2fdc7

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

pandas/conftest.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -460,16 +460,16 @@ def _create_mi_with_dt64tz_level():
460460
"uint": tm.makeUIntIndex(100),
461461
"range": tm.makeRangeIndex(100),
462462
"float": tm.makeFloatIndex(100),
463-
"num_int64": tm.makeNumIndex(100, dtype="int64"),
464-
"num_int32": tm.makeNumIndex(100, dtype="int32"),
465-
"num_int16": tm.makeNumIndex(100, dtype="int16"),
466-
"num_int8": tm.makeNumIndex(100, dtype="int8"),
467-
"num_uint64": tm.makeNumIndex(100, dtype="uint64"),
468-
"num_uint32": tm.makeNumIndex(100, dtype="uint32"),
469-
"num_uint16": tm.makeNumIndex(100, dtype="uint16"),
470-
"num_uint8": tm.makeNumIndex(100, dtype="uint8"),
471-
"num_float64": tm.makeNumIndex(100, dtype="float64"),
472-
"num_float32": tm.makeNumIndex(100, dtype="float32"),
463+
"num_int64": tm.makeNumericIndex(100, dtype="int64"),
464+
"num_int32": tm.makeNumericIndex(100, dtype="int32"),
465+
"num_int16": tm.makeNumericIndex(100, dtype="int16"),
466+
"num_int8": tm.makeNumericIndex(100, dtype="int8"),
467+
"num_uint64": tm.makeNumericIndex(100, dtype="uint64"),
468+
"num_uint32": tm.makeNumericIndex(100, dtype="uint32"),
469+
"num_uint16": tm.makeNumericIndex(100, dtype="uint16"),
470+
"num_uint8": tm.makeNumericIndex(100, dtype="uint8"),
471+
"num_float64": tm.makeNumericIndex(100, dtype="float64"),
472+
"num_float32": tm.makeNumericIndex(100, dtype="float32"),
473473
"bool": tm.makeBoolIndex(10),
474474
"categorical": tm.makeCategoricalIndex(100),
475475
"interval": tm.makeIntervalIndex(100),

0 commit comments

Comments
 (0)