Skip to content

Commit

Permalink
BENCH: update imports to allow testing against 1.2.5 (#42330)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonjayhawkins authored Jul 2, 2021
1 parent fee2b87 commit 71dd600
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion asv_bench/benchmarks/algos/isin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import numpy as np

from pandas.compat.numpy import np_version_under1p20
try:
from pandas.compat import np_version_under1p20
except ImportError:
from pandas.compat.numpy import _np_version_under1p20 as np_version_under1p20

from pandas import (
Categorical,
Expand Down

0 comments on commit 71dd600

Please sign in to comment.