Closed lparolari closed 5 months ago
The np.int alias for int in numpy has been deprecated in numpy 1.20 and removed in numpy 1.24.
np.int
int
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.
you have the following alternatives:
np.int_
Do I need to update as well the numpy version listed in the requirements.txt file?
The
np.int
alias forint
in numpy has been deprecated in numpy 1.20 and removed in numpy 1.24.Following documentation, I've replaced
np.int
toint
:Do I need to update as well the numpy version listed in the requirements.txt file?