Skip to content

Commit

Permalink
fix setup.py script in Demos dir
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Jul 27, 2012
1 parent 8aa581b commit 1b05e8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Demos/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# Only compile the following if numpy is installed.
try:
from numpy.distutils.misc_util import get_numpy_include_dirs
numpy_demo = Extension("*",
["numpy_*.pyx"],
include_dirs=get_numpy_include_dirs())
numpy_demo = [Extension("*",
["numpy_*.pyx"],
include_dirs=get_numpy_include_dirs())]
ext_modules.extend(cythonize(numpy_demo))
except ImportError:
pass
Expand Down

0 comments on commit 1b05e8b

Please sign in to comment.