diff options
-rw-r--r-- | benchmarks/asv.conf.json | 1 | ||||
-rw-r--r-- | benchmarks/benchmarks/bench_app.py | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/benchmarks/asv.conf.json b/benchmarks/asv.conf.json index b3c7f9f20..1046f10f2 100644 --- a/benchmarks/asv.conf.json +++ b/benchmarks/asv.conf.json @@ -42,7 +42,6 @@ // list indicates to just test against the default (latest) // version. "matrix": { - "six": [], "Cython": [], }, diff --git a/benchmarks/benchmarks/bench_app.py b/benchmarks/benchmarks/bench_app.py index 2a649f39b..bee95c201 100644 --- a/benchmarks/benchmarks/bench_app.py +++ b/benchmarks/benchmarks/bench_app.py @@ -2,8 +2,6 @@ from .common import Benchmark import numpy as np -from six.moves import xrange - class LaplaceInplace(Benchmark): params = ['inplace', 'normal'] @@ -59,7 +57,7 @@ class MaxesOfDots(Benchmark): ntime = 200 self.arrays = [np.random.normal(size=(ntime, nfeat)) - for i in xrange(nsubj)] + for i in range(nsubj)] def maxes_of_dots(self, arrays): """ |