cds-astro / ipyaladin

An IPython Widget for Aladin Lite, the sky viewer.
https://cds-astro.github.io/ipyaladin/
BSD 3-Clause "New" or "Revised" License
126 stars 26 forks source link

Deprecation warning from traitlets library #75

Closed ManonMarchand closed 1 month ago

ManonMarchand commented 7 months ago

There is a deprecation warning that is raised on some instantiations of the widget in version 0.3.0 :

DeprecationWarning: Deprecated in traitlets 4.1, use the instance .metadata dictionary directly, like x.metadata[key] or x.metadata.get(key, default)
  warn("Deprecated in traitlets 4.1, " + msg, DeprecationWarning, stacklevel=2)

This PR should solve it:

https://github.com/jupyter-widgets/ipywidgets/pull/3894

ManonMarchand commented 1 month ago

Fix was merged upstream