BeatNet
BeatNet copied to clipboard
Restrictive Numba dependency makes Numpy type hints non-descriptive
Would it be possible now to update the dependency of Numba to a later version that supports numpy 1.23? Without it, type hints of ndarray
is limited to just that, ndarray
, when IDEs infer variable types. The later versions allow inferring ndarray[shape, type]
such as ndarray[(Any, 3), float]
which is very useful for code readability.
I'm aware of the restriction from librosa that was commented back in 2021, so just wondering if theit misleading (fake) support was fixed?
Feel free to close this if it's still not possible. Thanks.