`np.float` is now deprecated
Closed this issue · 2 comments
NihanPol commented
I ran into the following error when loading in an archive file (showing only partial traceback for brevity). Thought I would bring this up here in case others run into it too.
My numpy version is 1.25.2, and python 3.9. Let me know if you need anything more from my end.
File ~/miniconda3/envs/enterprise/lib/python3.9/site-packages/pypulse/archive.py:805, in Archive.calculateOffpulseWindow(self)
800 def calculateOffpulseWindow(self):
801 """
802 Automatically calculates the off-pulse window
803 for the average SP
804 """
--> 805 self.spavg = SP.SinglePulse(self.average_profile, windowsize=int(self.getNbin()//8))
806 self.opw = self.spavg.opw
807 return self.opw
File ~/miniconda3/envs/enterprise/lib/python3.9/site-packages/pypulse/singlepulse.py:52, in SinglePulse.__init__(self, data, mpw, ipw, opw, prepare, align, period, windowsize, istemplate)
50 self.nbins = self.getNbins()
51 self.bins = np.arange(self.nbins)
---> 52 self.phases = np.arange(self.nbins, dtype=np.float)/self.nbins
54 if windowsize is not None or (mpw is None and opw is None and windowsize is None):
55 # if either windowsize is set or nothing is set,
56 # automatically calculate
57 self.calcOffpulseWindow(windowsize)
File ~/miniconda3/envs/enterprise/lib/python3.9/site-packages/numpy/__init__.py:319, in __getattr__(attr)
314 warnings.warn(
315 f"In the future `np.{attr}` will be defined as the "
316 "corresponding NumPy scalar.", FutureWarning, stacklevel=2)
318 if attr in __former_attrs__:
--> 319 raise AttributeError(__former_attrs__[attr])
321 if attr == 'testing':
322 import numpy.testing as testing
AttributeError: module 'numpy' has no attribute 'float'.
`np.float` was a deprecated alias for the builtin `float`. To avoid this error in existing code, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here.
The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
mtlam commented
@NihanPol are you still sure you are pointing to the right version? I checked and you can see here:
PyPulse/pypulse/singlepulse.py
Line 52 in 56dffd0
NihanPol commented
You're right, I wasn't using the latest version for some reason in my local install. Thank you!