diff options
author | Daniel M. Pelt <D.M.Pelt@cwi.nl> | 2015-05-18 20:54:54 +0200 |
---|---|---|
committer | Daniel M. Pelt <D.M.Pelt@cwi.nl> | 2015-05-18 20:54:54 +0200 |
commit | aed157812c31df681a7ba7dd4479cb35fbce05bb (patch) | |
tree | b1dc374d60ebdf57eb79d29ef78c9e1de80a6a10 /python/astra/matrix_c.pyx | |
parent | 06494dcc8ab199e716a21aca4aa9265a1a9dfc6a (diff) | |
download | astra-aed157812c31df681a7ba7dd4479cb35fbce05bb.tar.gz astra-aed157812c31df681a7ba7dd4479cb35fbce05bb.tar.bz2 astra-aed157812c31df681a7ba7dd4479cb35fbce05bb.tar.xz astra-aed157812c31df681a7ba7dd4479cb35fbce05bb.zip |
Fix range import for old six versions
Diffstat (limited to 'python/astra/matrix_c.pyx')
-rw-r--r-- | python/astra/matrix_c.pyx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/python/astra/matrix_c.pyx b/python/astra/matrix_c.pyx index b0d8bc4..d099a75 100644 --- a/python/astra/matrix_c.pyx +++ b/python/astra/matrix_c.pyx @@ -27,7 +27,12 @@ # distutils: libraries = astra import six -from six.moves import range +try: + from six.moves import range +except ImportError: + # six 1.3.0 + from six.moves import xrange as range + import numpy as np import scipy.sparse as ss |