-
Notifications
You must be signed in to change notification settings - Fork 197
Open
Description
Given the environment Python 3.12.7 and Xyce's 7.10.
It appears that the file Spice->RawFile.py contains a deprecated function (np.fromstring) on line 298.
Please update from
input_data = np.fromstring(raw_data, count=number_of_columns*self.number_of_points, dtype='f8')
To
input_data = np.frombuffer(raw_data, count=number_of_columns*self.number_of_points, dtype='f8')
Best regards,
Cody
Metadata
Metadata
Assignees
Labels
No labels