Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions src/tikzplotlib/_axes.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import matplotlib as mpl
import numpy as np
from matplotlib.backends.backend_pgf import (
common_texification as mpl_common_texification,
)
try:
from matplotlib.backends.backend_pgf import (
common_texification as mpl_common_texification,
)
except ImportError:
from matplotlib.backends.backend_pgf import (
_tex_excape as mpl_common_texification,
)

from . import _color

Expand Down