File tree 2 files changed +1
-9
lines changed
2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -1088,9 +1088,7 @@ def _engine(self):
1088
1088
# equivalent to sorting lexicographically the codes themselves. Notice
1089
1089
# that each level needs to be shifted by the number of bits needed to
1090
1090
# represent the _previous_ ones:
1091
- offsets = np .concatenate ([lev_bits [1 :], [0 ]]).astype ( # type: ignore[arg-type]
1092
- "uint64"
1093
- )
1091
+ offsets = np .concatenate ([lev_bits [1 :], [0 ]]).astype ("uint64" )
1094
1092
1095
1093
# Check the total number of bits needed for our representation:
1096
1094
if lev_bits [0 ] > 64 :
Original file line number Diff line number Diff line change @@ -263,12 +263,6 @@ def test_alignment_deprecation_many_inputs(request):
263
263
)
264
264
265
265
if np_version_gte1p22 :
266
- mark = pytest .mark .xfail (
267
- reason = "ufunc 'my_ufunc' did not contain a loop with signature matching "
268
- "types" ,
269
- )
270
- request .node .add_marker (mark )
271
-
272
266
mark = pytest .mark .filterwarnings (
273
267
"ignore:`np.MachAr` is deprecated.*:DeprecationWarning"
274
268
)
You can’t perform that action at this time.
0 commit comments