openPMD / openPMD-viewer

:snake: Python visualization tools for openPMD files
https://openpmd-viewer.readthedocs.io/
Other
67 stars 50 forks source link

IPython display deprecation #402

Closed berceanu closed 11 months ago

berceanu commented 1 year ago

This line seems to have a deprecated import

https://github.com/openPMD/openPMD-viewer/blob/b36dc4331c5fe5a1e8666faf608faf6b6ef4b2ca/openpmd_viewer/openpmd_timeseries/interactive.py#L16

    warn(f"Importing {name} from IPython.core.display is deprecated since IPython 7.14, please import from IPython display", DeprecationWarning, stacklevel=2)
DeprecationWarning: Importing display from IPython.core.display is deprecated since IPython 7.14, please import from IPython display

so it should be

from IPython.display import display, clear_output