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 depth.pyline 45: cmapper = matplotlib.cm.get_cmap(cmap) causes AttributeError: module 'matplotlib.cm' has no attribute 'get_cmap' when using latest Matplotlib 3.9.0.
According to api_changes_3.9.0, matplotlib.cm.get_cmap is removed and should use matplotlib.colormaps[cmap] instead.
The text was updated successfully, but these errors were encountered:
In
depth.py
line 45
:cmapper = matplotlib.cm.get_cmap(cmap)
causesAttributeError: module 'matplotlib.cm' has no attribute 'get_cmap'
when using latest Matplotlib 3.9.0.According to api_changes_3.9.0,
matplotlib.cm.get_cmap
is removed and should usematplotlib.colormaps[cmap]
instead.The text was updated successfully, but these errors were encountered: