Skip to content

Ensure compatibility with matplotlib>=3.6.0

Charlie Hoy requested to merge matplotlib_3.6.0 into master

The purpose of this MR is to ensure compatibility with matplotlib>=3.6.0. Prior to this change, errors such as ValueError: rotation must be 'vertical', 'horizontal' or a number, not 30 were seen with matplotlib>=3.6.0. This error arises because a string was being passed to fig.text in the pesummary.core.plots.main._PlotGeneration.save function rather than an integer.

Merge request reports