Skip to content

Commit 842fb24

Browse files
committed
Don't trigger matplotlib.__getattr__("__version__") if possible.
1 parent ac6d5fd commit 842fb24

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

lib/mplcairo/__init__.py

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import ast
2+
import functools
23
import os
34
import sys
45
import warnings
56

7+
68
try:
79
from ._version import version as __version__
810
except ImportError:
@@ -54,18 +56,32 @@ def _init_options():
5456
_init_options()
5557

5658

59+
@functools.lru_cache(1)
60+
def _get_mpl_version():
61+
# Don't trigger a git subprocess for Matplotlib's __version__ resolution if
62+
# possible, and cache the result as early versions of importlib.metadata
63+
# are slow. We can't cache get_versions() directly as the result depends
64+
# on whether raqm is loaded.
65+
try:
66+
import importlib.metadata
67+
return importlib.metadata.version("matplotlib")
68+
except ImportError:
69+
# No importlib.metadata on Py<3.8 *or* not-installed Matplotlib.
70+
return matplotlib.__version__
71+
72+
5773
def get_versions():
5874
"""
5975
Return a mapping indicating the versions of mplcairo and its dependencies.
6076
61-
This function is solely intended to help gather information for bug
62-
reports; its output may change without notice.
77+
This function is intended to help gather information for bug reports, and
78+
not part of the stable API.
6379
"""
6480
versions = _mplcairo.get_versions()
6581
return {
6682
"python": sys.version,
6783
"mplcairo": __version__,
68-
"matplotlib": matplotlib.__version__,
84+
"matplotlib": _get_mpl_version(),
6985
**versions,
7086
}
7187

lib/mplcairo/base.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from matplotlib.backends import backend_ps
2323
from matplotlib.mathtext import MathTextParser
2424

25-
from . import _mplcairo, _util
25+
from . import _mplcairo, _util, get_versions
2626
from ._backports import get_glyph_name
2727
from ._mplcairo import _StreamSurfaceType
2828

@@ -406,7 +406,8 @@ def print_png(self, path_or_stream, *,
406406
return
407407
metadata = {
408408
"Software":
409-
f"matplotlib version {mpl.__version__}, https://matplotlib.org",
409+
f"matplotlib version {get_versions()['matplotlib']}, "
410+
f"https://matplotlib.org",
410411
**(metadata if metadata is not None else {}),
411412
}
412413
if pil_kwargs is None:

0 commit comments

Comments
 (0)