Skip to content

Commit 56c9346

Browse files
re-apply benchmark fix (pandas-dev#39994)
1 parent f066cda commit 56c9346

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

asv_bench/benchmarks/algos/isin.py

+6
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ class IsInLongSeriesLookUpDominates:
273273
def setup(self, dtype, MaxNumber, series_type):
274274
N = 10 ** 7
275275

276+
# https://github.com/pandas-dev/pandas/issues/39844
276277
if not np_version_under1p20 and dtype in ("Int64", "Float64"):
277278
raise NotImplementedError
278279

@@ -303,6 +304,11 @@ class IsInLongSeriesValuesDominate:
303304

304305
def setup(self, dtype, series_type):
305306
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+
306312
if series_type == "random":
307313
np.random.seed(42)
308314
vals = np.random.randint(0, 10 * N, N)

0 commit comments

Comments
 (0)