-
Notifications
You must be signed in to change notification settings - Fork 219
add modulerc method to ModuleGenerator class #2575
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
821be8e
2cd663d
27c5b2c
c0ca814
c759b24
a9ac05b
e317816
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -111,6 +111,7 @@ | |
| [^\s\(]*[^:/] # module name must not have '(' or whitespace in it, must not end with ':' or '/' | ||
| ) # end named group for module name | ||
| (?P<default>\(default\))? # optional '(default)' that's not part of module name | ||
| (\([^()]+\))? # ignore '(...)' that is not part of module name (e.g. for symbolic versions) | ||
| \s*$ # ignore whitespace at the end of the line | ||
| """, re.VERBOSE), | ||
| } | ||
|
|
@@ -1106,7 +1107,7 @@ class Lmod(ModulesTool): | |
| """Interface to Lmod.""" | ||
| COMMAND = 'lmod' | ||
| COMMAND_ENVIRONMENT = 'LMOD_CMD' | ||
| REQ_VERSION = '5.8' | ||
| REQ_VERSION = '6.6.3' | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. note: Lmod 6.0 or newer is needed to pick up on Older Lmod 6.x versions have bugs that make it incompatible with EasyBuild in other (unrelated ways), hence the more recent 6.x being required. Lmod 6.6.3 is the latest 6.x release, which was released Nov 13th 2016 (close to 2 years old), so I don't expect this to be a big problem. Also, this way EasyBuild is still compatible with both Lmod 6.x & 7.x... |
||
| REQ_VERSION_DEPENDS_ON = '7.6.1' | ||
| VERSION_REGEXP = r"^Modules\s+based\s+on\s+Lua:\s+Version\s+(?P<version>\d\S*)\s" | ||
| USER_CACHE_DIR = os.path.join(os.path.expanduser('~'), '.lmod.d', '.cache') | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.