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
Thank you for maintaining Matplotlib garden flower!
Rendering LateX text (as in axes.text(0.5, 0.9, '$\sigma$')) is broken with MatplotLib > 3.5.0:
File ~/mambaforge/lib/python3.9/site-packages/kivy_garden/matplotlib/backend_kivy.py:871 in get_text_width_height_descent
ftimage, depth = self.mathtext_parser.parse(s, self.dpi, prop)
ValueError: too many values to unpack (expected 2)
This is due to the new behaviour of matplotlib.mathtext.MathTextParser.parse() (from the doc).
Thank you for maintaining Matplotlib garden flower!
Rendering LateX text (as in
axes.text(0.5, 0.9, '$\sigma$')
) is broken with MatplotLib > 3.5.0:This is due to the new behaviour of
matplotlib.mathtext.MathTextParser.parse()
(from the doc).As in
RendererKivy.__init__()
theMathTextParser
is created with the 'agg' output, aRasterParse
(NamedTuple
with more than 2 items) is returned.Also, it seems that the LaTeX rendering has undergone many other changes.
The text was updated successfully, but these errors were encountered: