Skip to content

Commit

Permalink
no need for scipy
Browse files Browse the repository at this point in the history
  • Loading branch information
itziakos committed Oct 8, 2014
1 parent d6d7d9b commit 8b09f48
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions chaco/tests/test_cmap_image_plot.py
Expand Up @@ -3,7 +3,6 @@
import mock

import numpy
import scipy.special

from enable.api import AbstractWindow
from chaco.api import (
Expand All @@ -20,7 +19,7 @@ def test_redraw_on_color_mapper_update(self):
xs = numpy.linspace(-2 * numpy.pi, +2 * numpy.pi, npoints)
ys = numpy.linspace(-1.5*numpy.pi, +1.5*numpy.pi, npoints)
x, y = numpy.meshgrid(xs, ys)
z = scipy.special.jn(2, x)*y*x
z = y * x

index = GridDataSource(xdata=xs, ydata=ys)
index_mapper = GridMapper(range=DataRange2D(index))
Expand Down

0 comments on commit 8b09f48

Please sign in to comment.