qkitgroup / qkit

Qkit framework
GNU General Public License v2.0
43 stars 46 forks source link

Deprecated function call in circle fit: np.complex no longer exists. #107

Closed thilokru closed 1 year ago

thilokru commented 1 year ago

After (lenghty) research, a bug in the circle fit was resolved to be caused by a new version of numpy having removed this function. It can be fixed by replacing every call to

np.complex(...)

with

complex(...)