diff --git a/instantPASDy-GUI.py b/instantPASDy-GUI.py index db069b1702d09c326f5a4d414e314d47d070a9e7..0c22c3a3627db22e2022e7e5cb3519d84ad0f59d 100644 --- a/instantPASDy-GUI.py +++ b/instantPASDy-GUI.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +VERSION = '0.2 (2019-08-16)' import zipfile @@ -47,7 +48,6 @@ def read_header(filename, archive=None): return(data_columns) ufzcolor = '#00508E' -VERSION = '0.1a (2019-04-15)' from glob import glob import sys diff --git a/instantPASDy.py b/instantPASDy.py index d961f1ca4eec9d0311894fca8a7becd8c116cd94..3bd3029ece66f00570fba9193e04d55c850a366b 100644 --- a/instantPASDy.py +++ b/instantPASDy.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +VERSION = '0.2 (2019-08-16)' + # Suppress nasty future warnings about pandas datetime conersion import warnings warnings.simplefilter(action='ignore', category=FutureWarning) @@ -573,7 +576,7 @@ def yesno2bool(s): config = None def main(configfile=None): - print("Welcome to instant-PASDy!") + print("Welcome to instant-PASDy %s!" % VERSION) # Config config = configparser.ConfigParser()