Skip to content

Commit

Permalink
add changes from hound
Browse files Browse the repository at this point in the history
  • Loading branch information
clsgithubusr committed Jan 15, 2021
1 parent 3477e9b commit 7f5a05d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions easybuild/tools/module_naming_scheme/generation_mns.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ def det_module_subdir(self, ec):

if ec['toolchain']['name'] == 'foss':
release_date = ec['toolchain']['version']
elif ec['toolchain']['name'] == 'GCCcore':
# please add a new GCCcore version if you want to use a new toolchain version.
elif ec['toolchain']['name'] == 'GCCcore':
# please add a new GCCcore version
# if you want to use a new toolchain version.
if ec['toolchain']['version'] == '7.3.0':
release_date = '2018b'
elif ec['toolchain']['version'] == '6.3.0':
Expand All @@ -85,8 +86,9 @@ def det_module_subdir(self, ec):
release_date = '2019b'
elif ec['toolchain']['version'] == '10.2.0':
release_date = '2020b'
elif ec['toolchain']['name'] == 'GCC':
# please add a new GCC version if you want to use a new toolchain version.
elif ec['toolchain']['name'] == 'GCC':
# please add a new GCC version
# if you want to use a new toolchain version.
if ec['toolchain']['version'] == '7.3.0-2.30':
release_date = '2018b'
elif ec['toolchain']['version'] == '6.3.0-2.27':
Expand Down

0 comments on commit 7f5a05d

Please sign in to comment.