Skip to content

Commit 4e1e72f

Browse files
authored
Merge pull request #9 from Julian-Hochhaus/np_float
np.float to np.float64
2 parents e403b29 + 83aae60 commit 4e1e72f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spym/io/omicronscala/_scala.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,5 +245,5 @@ def __init__(self, data, attrs):
245245
xres = self.attrs['IncrementX']
246246
ysize = self.attrs['ImageSizeinY']
247247
yres = self.attrs['IncrementY']
248-
self.coords = [('y', yres * np.arange(ysize, dtype=np.float)),
249-
('x', xres * np.arange(xsize, dtype=np.float))]
248+
self.coords = [('y', yres * np.arange(ysize, dtype=np.float64)),
249+
('x', xres * np.arange(xsize, dtype=np.float64))]

0 commit comments

Comments
 (0)