Skip to content
Snippets Groups Projects
Commit d9045780 authored by Mads M. Pedersen's avatar Mads M. Pedersen
Browse files

Merge branch 'remove_matplotlib' into 'master'

try/except around matplotlib import

See merge request !39
parents 4e0e0b22 d8b65e96
No related branches found
No related tags found
1 merge request!39try/except around matplotlib import
Pipeline #
...@@ -31,7 +31,10 @@ import scipy as sp ...@@ -31,7 +31,10 @@ import scipy as sp
from scipy import optimize as opt from scipy import optimize as opt
from scipy import stats from scipy import stats
from scipy.interpolate import griddata as interp from scipy.interpolate import griddata as interp
from matplotlib import pyplot as plt try:
from matplotlib import pyplot as plt
except:
pass
import pandas as pd import pandas as pd
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment