-
Notifications
You must be signed in to change notification settings - Fork 2
Description
When importing stemtool, numba raises the following warning (multiple times):
NumbaDeprecationWarning: Thenopythonkeyword argument was not supplied to thenumba.jitdecorator. The implicit default value for this argument is currentlyFalse, but it will be changed toTruein Numba 0.59.0. See https://numba.readthedocs.io/en/stable/reference/deprecation.html#deprecation-of-object-mode-fall-back-behaviour-when-using-jit for details.
The current Numba version is 0.58.0, and based on their previous release schedule I'd expect 0.59.0 within the next six months or so. My understanding is that this warning means that if there is any code in stemtool which is currently falling back to the python interpreter for function calls not supported supported by Numba, after 0.59.0 they will instead raise an error unless nopython is explicitly set to False.
I'm not sure if this will affect stemtool or not, but as there was no current open issue regarding this change it seemed like a good idea to open one.