Closed stichou closed 1 year ago
I have the impression that colormap was deprecated in latest python version.
colormap
You should replace:
cmap = colormaps.get_cmap("viridis")
by
cmap = matplotlib.pyplot.get_cmap("viridis")
Thanks for bringing up this issue. It has just been fixed in the last pull request. #12
I have the impression that
colormap
was deprecated in latest python version.You should replace:
by