We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a72f357 + 75cdfaf commit 465a7cbCopy full SHA for 465a7cb
mpl_gui/_manage_backend.py
@@ -5,6 +5,7 @@
5
6
from matplotlib import cbook, rcsetup
7
from matplotlib import rcParams, rcParamsDefault
8
+from matplotlib.backends.registry import backend_registry
9
import matplotlib.backend_bases
10
11
@@ -92,7 +93,7 @@ def select_gui_toolkit(newbackend=None):
92
93
if newbackend.lower() == "tkagg":
94
backend_name = f"mpl_gui._patched_backends.{newbackend.lower()}"
95
else:
- backend_name = cbook._backend_module_name(newbackend)
96
+ backend_name = backend_registry._backend_module_name(newbackend)
97
98
mod = importlib.import_module(backend_name)
99
if hasattr(mod, "Backend"):
requirements.txt
@@ -1,2 +1,2 @@
1
# List required packages in this file, one per line.
2
-matplotlib
+matplotlib>3.9
0 commit comments