diff --git a/eidos/spatial.py b/eidos/spatial.py index 7232b82..e72941c 100644 --- a/eidos/spatial.py +++ b/eidos/spatial.py @@ -1,6 +1,8 @@ #!/usr/bin/env python from util import * -from scipy.misc import factorial as fac +import math + +fac = math.factorial class Zernike(object): """ @@ -182,4 +184,4 @@ def recon_par(data): Zi = Zernike(coeffs[1,...], idx=nolls[1,...], threshold=[thr,thr], Npix=npix, mode='jones recon') B = Zr.recon + 1j*Zi.recon return B - \ No newline at end of file + diff --git a/setup.py b/setup.py index 0d3c860..5f3a3e0 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ PACKAGE_NAME = 'eidos' -__version__ = '1.0.3' +__version__ = '1.1.0' setup(name = PACKAGE_NAME, version = __version__,