8000 Support macos backend · matplotlib/matplotlib@a0cac93 · GitHub
[go: up one dir, main page]

Skip to content

Commit a0cac93

Browse files
committed
Support macos backend
1 parent 3433954 commit a0cac93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/matplotlib/backends/registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class BackendRegistry:
6868
"gtk3": "gtk3agg",
6969
"gtk4": "gtk4agg",
7070
"headless": "agg",
71-
"macosx": "macosx",
71+
"osx": "macosx",
7272
"qt": "qtagg",
7373
"qt5": "qt5agg",
7474
"qt6": "qt6agg",

lib/matplotlib/tests/test_backend_registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def has_duplicates(seq: Sequence[Any]) -> bool:
2828
('gtk4', 'gtk4agg'),
2929
('wx', 'wxagg'),
3030
('tk', 'tkagg'),
31-
('macosx', 'macosx'),
31+
('osx', 'macosx'),
3232
('headless', 'agg'),
3333
('does not exist', None),
3434
]

0 commit comments

Comments
 (0)
0