File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
asv_bench/benchmarks/algos Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -273,6 +273,7 @@ class IsInLongSeriesLookUpDominates:
273
273
def setup (self , dtype , MaxNumber , series_type ):
274
274
N = 10 ** 7
275
275
276
+ # https://github.com/pandas-dev/pandas/issues/39844
276
277
if not np_version_under1p20 and dtype in ("Int64" , "Float64" ):
277
278
raise NotImplementedError
278
279
@@ -303,6 +304,11 @@ class IsInLongSeriesValuesDominate:
303
304
304
305
def setup (self , dtype , series_type ):
305
306
N = 10 ** 7
307
+
308
+ # https://github.com/pandas-dev/pandas/issues/39844
309
+ if not np_version_under1p20 and dtype in ("Int64" , "Float64" ):
310
+ raise NotImplementedError
311
+
306
312
if series_type == "random" :
307
313
np .random .seed (42 )
308
314
vals = np .random .randint (0 , 10 * N , N )
You can’t perform that action at this time.
0 commit comments