votchallenge / toolkit

The official VOT Challenge evaluation and analysis toolkit
http://www.votchallenge.net/
GNU General Public License v3.0
158 stars 46 forks source link

Fixing np.int alias removed in numpy 1.24 #120

Closed lparolari closed 3 months ago

lparolari commented 3 months ago

The np.int alias for int in numpy has been deprecated in numpy 1.20 and removed in numpy 1.24.

Following documentation, I've replaced np.int to int:

you have the following alternatives:

  • np.int_ or int (the default), but be aware that it depends on the computer and operating system.

Do I need to update as well the numpy version listed in the requirements.txt file?