From 5eeb368a3e521ffeca2f7e08b7a6bf27b16b7903 Mon Sep 17 00:00:00 2001 From: Lucy Whalley Date: Tue, 15 Dec 2020 17:51:22 +0000 Subject: [PATCH] Make compatable with latest matplotlib version somewhere between matplotlib 3.0.3 and 3.3.3 the matplotlib.use() method removed the 'warn' keyword. This has been removed from the method call. --- effmass/outputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/effmass/outputs.py b/effmass/outputs.py index a760667..9348e71 100644 --- a/effmass/outputs.py +++ b/effmass/outputs.py @@ -6,7 +6,7 @@ """ import matplotlib -matplotlib.use('Agg',warn=False) +matplotlib.use('Agg') import matplotlib.pyplot as plt import numpy as np