We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This deprecation warning appears from this line in ginga.cmap. It looks like matplotlib is trying to deprecate accessing the global colormaps dictionary.
ginga.cmap
matplotlib
So far I have not found a replacement API for getting the same information using a public API.
The text was updated successfully, but these errors were encountered:
Hmm. I haven't seen it. Maybe I am not using a new enough Matplotlib.
Sorry, something went wrong.
Seems to be a bleeding-edge version...
Looks like we might be able to replace
for name in _cm.cmap_d:
with
for name in _cm._gen_cmap_registry():
But of course that also looks like an internal API, and we'd need to check matplotlib version before trying to access it.
xref matplotlib/matplotlib#16991
Successfully merging a pull request may close this issue.
This deprecation warning appears from this line in
ginga.cmap
. It looks likematplotlib
is trying to deprecate accessing the global colormaps dictionary.So far I have not found a replacement API for getting the same information using a public API.
The text was updated successfully, but these errors were encountered: