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
Is your feature request related to a problem? Please describe. numba is specified as required dependency in requirements.txt, but it does not seem to be used anywhere. As it is a quite heavy dependency and not available on all platforms, could it be considered to be removed?
Describe the solution you'd like
Remove numba as required dependency.
The text was updated successfully, but these errors were encountered:
Hi @lorentzenchr. You're correct that there is no direct dependency on numba, but the package does depend on pydata/sparse which has numba as a hard dependency. Until we move off of sparse, I think we're stuck with numba.
If I understand correctly, the sparse package is used to provide the "array_backend" for the triangle data (triangle.values array). How about making the sparse backend optional? (if sparse is installed it works, if not an informed error message is thrown.)
Is your feature request related to a problem? Please describe.
numba
is specified as required dependency inrequirements.txt
, but it does not seem to be used anywhere. As it is a quite heavy dependency and not available on all platforms, could it be considered to be removed?Describe the solution you'd like
Remove
numba
as required dependency.The text was updated successfully, but these errors were encountered: