We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f066cda commit 56c9346Copy full SHA for 56c9346
asv_bench/benchmarks/algos/isin.py
@@ -273,6 +273,7 @@ class IsInLongSeriesLookUpDominates:
273
def setup(self, dtype, MaxNumber, series_type):
274
N = 10 ** 7
275
276
+ # https://github.com/pandas-dev/pandas/issues/39844
277
if not np_version_under1p20 and dtype in ("Int64", "Float64"):
278
raise NotImplementedError
279
@@ -303,6 +304,11 @@ class IsInLongSeriesValuesDominate:
303
304
305
def setup(self, dtype, series_type):
306
307
+
308
309
+ if not np_version_under1p20 and dtype in ("Int64", "Float64"):
310
+ raise NotImplementedError
311
312
if series_type == "random":
313
np.random.seed(42)
314
vals = np.random.randint(0, 10 * N, N)
0 commit comments