You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trackpy internally uses np.Inf which was removed in numpy version 2.0.0 (should use np.inf instead) leading in an error in multiple trackpy functions (such as link).
To replicate, install numpy 2.0.0 (newest version as of now) and trackpy 0.6.3 (newest version as of now), import both and call trackpy.link
The text was updated successfully, but these errors were encountered:
Thanks. The fix within the trackpy code is straightforward; you can see it in #770 and it will go in the next release. However, trackpy optionally uses PyTables to store data in files, and the PyTables team is still working on compatibility: PyTables/PyTables#1172 . So, even once #770 is merged, I recommend sticking with numpy 1, unless you are certain you will not use trackpy's storage features. That means one of
Install the default anaconda environment (from anaconda.org) which currently still includes numpy 1.26.
Trackpy internally uses np.Inf which was removed in numpy version 2.0.0 (should use np.inf instead) leading in an error in multiple trackpy functions (such as link).
To replicate, install numpy 2.0.0 (newest version as of now) and trackpy 0.6.3 (newest version as of now), import both and call trackpy.link
The text was updated successfully, but these errors were encountered: