Skip to content

Commit 70607ba

Browse files
Merge pull request pandas-dev#10928 from qwhelan/asv_update
Updates for asv suite
2 parents ba0704f + eac3fd8 commit 70607ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+2251
-1930
lines changed

asv_bench/asv.conf.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
// If missing or the empty string, the tool will be automatically
1919
// determined by looking for tools on the PATH environment
2020
// variable.
21-
"environment_type": "conda",
21+
"environment_type": "",
2222

2323
// the base URL to show a commit for the project.
2424
"show_commit_url": "https://github.com/pydata/pandas/commit/",
2525

2626
// The Pythons you'd like to test against. If not provided, defaults
2727
// to the current version of Python used to run `asv`.
2828
// "pythons": ["2.7", "3.4"],
29-
"pythons": ["2.7"],
29+
"pythons": ["2.7", "3.4"],
3030

3131
// The matrix of dependencies to test. Each key is the name of a
3232
// package (in PyPI) and the values are version numbers. An empty
@@ -41,7 +41,10 @@
4141
"sqlalchemy": [],
4242
"scipy": [],
4343
"numexpr": [],
44-
"pytables": [],
44+
"tables": [],
45+
"openpyxl": [],
46+
"xlrd": [],
47+
"xlwt": []
4548
},
4649

4750
// The directory (relative to the current directory) that benchmarks are

asv_bench/benchmarks/attrs_caching.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from pandas_vb_common import *
1+
from .pandas_vb_common import *
22

33

44
class getattr_dataframe_index(object):

asv_bench/benchmarks/binary_ops.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from pandas_vb_common import *
1+
from .pandas_vb_common import *
22
import pandas.computation.expressions as expr
33

44

asv_bench/benchmarks/categoricals.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from pandas_vb_common import *
1+
from .pandas_vb_common import *
22

33

44
class concat_categorical(object):

asv_bench/benchmarks/ctors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from pandas_vb_common import *
1+
from .pandas_vb_common import *
22

33

44
class frame_constructor_ndarray(object):

asv_bench/benchmarks/eval.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from pandas_vb_common import *
2-
import pandas.computation.expressions as expr
1+
from .pandas_vb_common import *
32
import pandas as pd
3+
import pandas.computation.expressions as expr
44

55

66
class eval_frame_add_all_threads(object):

0 commit comments

Comments
 (0)