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
Various feature changes in the future might be invasive to the long-term support (LTS) concept. IOW, having a deprecation warning for Panel. So allow an option to control this.
These would default to warn, but can then be user settable. Normally don't like changes to global state, but if you are using a 'deprecated' feature, easiest to silence things like this.
The text was updated successfully, but these errors were encountered:
Sure, this seems fine to me, though showing examples of how to do this with warnings.filterwarnings might be enough, e.g., warnings.filterwarnings('ignore', 'panel', FutureWarning).
Various feature changes in the future might be invasive to the long-term support (LTS) concept. IOW, having a deprecation warning for Panel. So allow an option to control this.
Panel
, Deprecation of Panel ? #13563.ix
: DEPR: deprecate .ix #14218something like:
options.features.panel = 'warn' | 'raise' | 'ignore'
options.features.ix = 'warn' | 'raise' | 'ignore'
These would default to
warn
, but can then be user settable. Normally don't like changes to global state, but if you are using a 'deprecated' feature, easiest to silence things like this.The text was updated successfully, but these errors were encountered: