Skip to content

Commit

Permalink
Merge pull request #4357 from boegel/easyblocks_looseversion
Browse files Browse the repository at this point in the history
take into account that `VERBOSE_VERSION` imported from `easybuild.easyblocks` is now a string value
  • Loading branch information
Micket authored Oct 25, 2023
2 parents 31f5367 + 8bcb5dd commit 6cde0db
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 6cde0db

Please sign in to comment.