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.
There are scenarios in which a user would like to use this package in an environment without numba installed. By default quaternion raises a warning when it detects that numba is not present. We can squash these warnings with:
with warnings.catch_warnings():
import quaternion
but this is annoying for the user and makes people not familiar with this package or numba think that there is something wrong with their installation and less willing to adopt it.
Would you consider changing the default behaviour to not raise the warning at all?
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
There are scenarios in which a user would like to use this package in an environment without numba installed. By default quaternion raises a warning when it detects that numba is not present. We can squash these warnings with:
but this is annoying for the user and makes people not familiar with this package or numba think that there is something wrong with their installation and less willing to adopt it.
Would you consider changing the default behaviour to not raise the warning at all?
The text was updated successfully, but these errors were encountered: