We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d171d13 commit ca12487Copy full SHA for ca12487
CHANGELOG.md
@@ -22,6 +22,8 @@
22
23
### Internal changes
24
25
+- Replace deprecated `matplotlib.rcsetup.all_backends` with `matplotlib.backends.backend_registry.list_builtin()`
26
+ ([#160](https://github.com/mpytools/mplotutils/pull/160)).
27
28
## v0.6.0 (04.12.2024)
29
mplotutils/tests/test_get_renderer.py
@@ -6,7 +6,7 @@
6
from . import figure_context, restore_backend
7
8
9
-@pytest.mark.parametrize("backend", matplotlib.rcsetup.all_backends)
+@pytest.mark.parametrize("backend", matplotlib.backends.backend_registry.list_builtin())
10
def test_get_renderer(backend):
11
12
with restore_backend(backend):
0 commit comments