Skip to content

Commit 6cde0db

Browse files
authored
Merge pull request #4357 from boegel/easyblocks_looseversion
take into account that `VERBOSE_VERSION` imported from `easybuild.easyblocks` is now a string value
2 parents 31f5367 + 8bcb5dd commit 6cde0db

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)