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
In C extensions, use FutureWarning, not DeprecationWarning.
DeprecationWarnings are hidden by default (that's why
MatplotlibDeprecationWarning inherits from UserWarning, not
DeprecationWarning...) and throwing a MatplotlibDeprecationWarning from
C code is too much of a pain to be worth it; also, CPython suggests
using FutureWarning for this purpose as well.
(https://docs.python.org/3/library/warnings.html#warning-categories)
0 commit comments