Skip to content

Commit

Permalink
add version info to the processing log
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaelicke committed Jul 4, 2024
1 parent 82e8e87 commit 2c85a5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/run.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import sys
import platform
from datetime import datetime as dt
import time
from pathlib import Path
Expand All @@ -17,6 +18,7 @@
import aggregator
import reporter
from clip import reference_area_to_file
from version import __version__

# parse parameters
kwargs = get_parameter()
Expand Down Expand Up @@ -60,6 +62,8 @@
MSG = f"""\
This is the V-FOR-WaTer data loader report
The loader version is: {__version__} (Python: {platform.python_version()})
Running on: {platform.platform()}
The following information has been submitted to the tool:
START DATE: {params.start_date}
Expand Down
1 change: 1 addition & 0 deletions src/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.10.0"

0 comments on commit 2c85a5b

Please sign in to comment.