Delete matplotlib requirement

This commit is contained in:
linarphy 2023-07-18 15:44:26 +02:00
parent b855e870b7
commit 0ce7b43f05
No known key found for this signature in database
GPG key ID: 3D4AAAC3AD16E79C
2 changed files with 1 additions and 3 deletions

3
ETA.py
View file

@ -1,7 +1,6 @@
#!/usr/bin/env python3
import numpy as np
import matplotlib.pyplot as plt
import utils
import sys
import pathlib
@ -65,7 +64,7 @@ while i < len( argv ):
\nParse a naroo ETA fits' )
exit()
elif arg == '--version':
print( '0.3' )
print( '0.4' )
exit()
elif arg == '--verbose':
verbose = True

View file

@ -1,7 +1,6 @@
#!/usr/bin/env python3
import numpy as np
import matplotlib.pyplot as plt
from scipy.signal import medfilt , find_peaks
from scipy.signal import convolve as sp_convolve
from scipy.optimize import curve_fit