Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions asv_bench/benchmarks/attrs_caching.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import numpy as np

from pandas import DataFrame

try:
from pandas.util import cache_readonly
except ImportError:
Expand Down
2 changes: 2 additions & 0 deletions asv_bench/benchmarks/binary_ops.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import numpy as np

from pandas import DataFrame, Series, date_range
from pandas.core.algorithms import checked_add_with_arr

try:
import pandas.core.computation.expressions as expr
except ImportError:
Expand Down
2 changes: 2 additions & 0 deletions asv_bench/benchmarks/categoricals.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import warnings

import numpy as np

import pandas as pd
import pandas.util.testing as tm

try:
from pandas.api.types import union_categoricals
except ImportError:
Expand Down
3 changes: 2 additions & 1 deletion asv_bench/benchmarks/ctors.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import numpy as np

from pandas import DatetimeIndex, Index, MultiIndex, Series, Timestamp
import pandas.util.testing as tm
from pandas import Series, Index, DatetimeIndex, Timestamp, MultiIndex


def no_change(arr):
Expand Down
2 changes: 2 additions & 0 deletions asv_bench/benchmarks/eval.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import numpy as np

import pandas as pd

try:
import pandas.core.computation.expressions as expr
except ImportError:
Expand Down
7 changes: 1 addition & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,7 @@ force_sort_within_sections=True
skip=
pandas/core/api.py,
pandas/core/frame.py,
asv_bench/benchmarks/attrs_caching.py,
asv_bench/benchmarks/binary_ops.py,
asv_bench/benchmarks/categoricals.py,
asv_bench/benchmarks/ctors.py,
asv_bench/benchmarks/eval.py,
asv_bench/benchmarks/dtypes.py,
asv_bench/benchmarks/frame_ctor.py,
asv_bench/benchmarks/frame_methods.py,
asv_bench/benchmarks/gil.py,
Expand Down Expand Up @@ -150,7 +146,6 @@ skip=
asv_bench/benchmarks/timeseries.py
asv_bench/benchmarks/pandas_vb_common.py
asv_bench/benchmarks/offset.py
asv_bench/benchmarks/dtypes.py
asv_bench/benchmarks/strings.py
asv_bench/benchmarks/period.py
pandas/__init__.py
Expand Down