Skip to content

Commit a427887

Browse files
authoredFeb 11, 2021
CI: fix reference to take_1d() (pandas-dev#39744)
Removed in pandas-dev#39731.
1 parent 0c18cc6 commit a427887

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎asv_bench/benchmarks/gil.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import numpy as np
22

33
from pandas import DataFrame, Series, date_range, factorize, read_csv
4-
from pandas.core.algorithms import take_1d
4+
from pandas.core.algorithms import take_nd
55

66
from .pandas_vb_common import tm
77

@@ -110,7 +110,7 @@ def setup(self, dtype):
110110

111111
@test_parallel(num_threads=2)
112112
def parallel_take1d():
113-
take_1d(df["col"].values, indexer)
113+
take_nd(df["col"].values, indexer)
114114

115115
self.parallel_take1d = parallel_take1d
116116

0 commit comments

Comments
 (0)
Please sign in to comment.