From dc3406d5618aebd95707c59e6452931d531c8439 Mon Sep 17 00:00:00 2001 From: f321x Date: Tue, 10 Jun 2025 16:14:04 +0200 Subject: [PATCH] change matplotlib backend from qt5agg to QtAgg according to the matplotlib docs (https://matplotlib.org/stable/api/backend_qt_api.html) specifing the exact qt version is depreceated and from now on only QtAgg should be specified for the qt backend. --- electrum/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/plot.py b/electrum/plot.py index 3e3604d29..a9a4cb922 100644 --- a/electrum/plot.py +++ b/electrum/plot.py @@ -5,7 +5,7 @@ from decimal import Decimal from collections import defaultdict import matplotlib -matplotlib.use('Qt5Agg') +matplotlib.use('QtAgg') import matplotlib.pyplot as plt import matplotlib.dates as md