Skip to content

Commit

Permalink
take into account that VERBOSE_VERSION imported from easybuild.easybl…
Browse files Browse the repository at this point in the history
…ocks is now a string value
  • Loading branch information
boegel committed Oct 22, 2023
1 parent 37d7a0e commit 7ee39c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/tools/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def get_git_revision():

def this_is_easybuild():
"""Standard starting message"""
top_version = max(FRAMEWORK_VERSION, EASYBLOCKS_VERSION)
top_version = max(FRAMEWORK_VERSION, LooseVersion(EASYBLOCKS_VERSION))
msg = "This is EasyBuild %s (framework: %s, easyblocks: %s) on host %s."
msg = msg % (top_version, FRAMEWORK_VERSION, EASYBLOCKS_VERSION, gethostname())

Expand Down

0 comments on commit 7ee39c5

Please sign in to comment.