Skip to content

Commit

Permalink
fix setup.py for case where cython not installed.
Browse files Browse the repository at this point in the history
  • Loading branch information
brentp committed Oct 7, 2010
1 parent 09f7fb3 commit c7fd7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from Cython.Distutils import build_ext
cmdclass = {'build_ext': build_ext}
except ImportError:
cmdclass = None
cmdclass = {}

version = '0.0.2'
import numpy
Expand Down

0 comments on commit c7fd7c1

Please sign in to comment.