diff --git a/scripts/plot_whisker.py b/scripts/plot_whisker.py index e76771e..701078a 100755 --- a/scripts/plot_whisker.py +++ b/scripts/plot_whisker.py @@ -34,7 +34,7 @@ else: times = [b["times"] for b in results] boxplot = plt.boxplot(times, vert=True, patch_artist=True) -cmap = plt.colormaps["rainbow"] +cmap = plt.get_cmap("rainbow") colors = [cmap(val / len(times)) for val in range(len(times))] for patch, color in zip(boxplot["boxes"], colors):