Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ASV imports #23085

Merged
merged 1 commit into from
Oct 11, 2018
Merged
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
5 changes: 2 additions & 3 deletions asv_bench/benchmarks/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@

import numpy as np
import pandas.util.testing as tm
from pandas import (Series, DataFrame, MultiIndex, Int64Index, Float64Index,
IntervalIndex, CategoricalIndex,
from pandas import (Series, DataFrame, Panel, MultiIndex, Int64Index,
Float64Index, IntervalIndex, CategoricalIndex,
IndexSlice, concat, date_range)
from .pandas_vb_common import Panel


class NumericSeriesIndexing(object):
Expand Down
2 changes: 0 additions & 2 deletions asv_bench/benchmarks/join_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
except ImportError:
from pandas import ordered_merge as merge_ordered

from .pandas_vb_common import Panel


class Append(object):

Expand Down
2 changes: 0 additions & 2 deletions asv_bench/benchmarks/panel_ctor.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@

from pandas import DataFrame, Panel, DatetimeIndex, date_range

from .pandas_vb_common import Panel


class DifferentIndexes(object):
goal_time = 0.2
Expand Down
2 changes: 0 additions & 2 deletions asv_bench/benchmarks/panel_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
import numpy as np
from pandas import Panel

from .pandas_vb_common import Panel


class PanelMethods(object):

Expand Down