Skip to content

Commit 465a7cb

Browse files
authored
Merge pull request #19 from tacaswell/fix/mpl39
FIX: account for changes to private methods in mpl39
2 parents a72f357 + 75cdfaf commit 465a7cb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

mpl_gui/_manage_backend.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
from matplotlib import cbook, rcsetup
77
from matplotlib import rcParams, rcParamsDefault
8+
from matplotlib.backends.registry import backend_registry
89
import matplotlib.backend_bases
910

1011

@@ -92,7 +93,7 @@ def select_gui_toolkit(newbackend=None):
9293
if newbackend.lower() == "tkagg":
9394
backend_name = f"mpl_gui._patched_backends.{newbackend.lower()}"
9495
else:
95-
backend_name = cbook._backend_module_name(newbackend)
96+
backend_name = backend_registry._backend_module_name(newbackend)
9697

9798
mod = importlib.import_module(backend_name)
9899
if hasattr(mod, "Backend"):

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# List required packages in this file, one per line.
2-
matplotlib
2+
matplotlib>3.9

0 commit comments

Comments
 (0)