I encountered the following error
AttributeError: module 'numpy' has no attribute 'asscalar'
while trying to do:
from nenupy.instru.interferometer import ObservingMode
Apparently, the attribute asscalar is deprecated since NumPy v1.16 and Numpy v1.23 totally removed it.
So it should be it should be specify in the requirement that numpy needs to be in version <1.23.
I encountered the following error
AttributeError: module 'numpy' has no attribute 'asscalar'while trying to do:
from nenupy.instru.interferometer import ObservingModeApparently, the attribute
asscalaris deprecated since NumPy v1.16 and Numpy v1.23 totally removed it.So it should be it should be specify in the requirement that numpy needs to be in version <1.23.