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
v10.1 has a problem in tikzplotlib_axes.py
from matplotlib.backends.backend_pgf import common_texification as mpl_common_texification
Leading to:
ImportError: cannot import name 'common_texification' from 'matplotlib.backends.backend_pgf'
I tshould be:
from matplotlib.backends.backend_pgf import _tex_escape as mpl_common_texification instead.
The text was updated successfully, but these errors were encountered:
v10.1 has a problem in tikzplotlib_axes.py
from matplotlib.backends.backend_pgf import common_texification as mpl_common_texification
Leading to:
ImportError: cannot import name 'common_texification' from 'matplotlib.backends.backend_pgf'
I tshould be:
from matplotlib.backends.backend_pgf import _tex_escape as mpl_common_texification instead.
The text was updated successfully, but these errors were encountered: