Skip to content

Commit 7ee39c5

Browse files
committed
take into account that VERBOSE_VERSION imported from easybuild.easyblocks is now a string value
1 parent 37d7a0e commit 7ee39c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/tools/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def get_git_revision():
9292

9393
def this_is_easybuild():
9494
"""Standard starting message"""
95-
top_version = max(FRAMEWORK_VERSION, EASYBLOCKS_VERSION)
95+
top_version = max(FRAMEWORK_VERSION, LooseVersion(EASYBLOCKS_VERSION))
9696
msg = "This is EasyBuild %s (framework: %s, easyblocks: %s) on host %s."
9797
msg = msg % (top_version, FRAMEWORK_VERSION, EASYBLOCKS_VERSION, gethostname())
9898

0 commit comments

Comments
 (0)