Skip to content

Commit 342d30b

Browse files
committed
drop unused changes
1 parent 9bebaae commit 342d30b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

easybuild/tools/modules.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ def __init__(self, mod_paths=None, testing=False):
206206
self.check_module_function(allow_mismatch=build_option('allow_modules_tool_mismatch'))
207207
self.set_and_check_version()
208208
self.supports_depends_on = False
209-
self.supports_extensions = False
210209

211210
def buildstats(self):
212211
"""Return tuple with data to be included in buildstats"""
@@ -1224,7 +1223,6 @@ class Lmod(ModulesTool):
12241223
REQ_VERSION = '6.5.1'
12251224
DEPR_VERSION = '7.0.0'
12261225
REQ_VERSION_DEPENDS_ON = '7.6.1'
1227-
REQ_VERSION_EXTENSIONS = '8.2.0'
12281226
VERSION_REGEXP = r"^Modules\s+based\s+on\s+Lua:\s+Version\s+(?P<version>\d\S*)\s"
12291227
USER_CACHE_DIR = os.path.join(os.path.expanduser('~'), '.lmod.d', '.cache')
12301228

@@ -1243,7 +1241,6 @@ def __init__(self, *args, **kwargs):
12431241

12441242
super(Lmod, self).__init__(*args, **kwargs)
12451243
self.supports_depends_on = StrictVersion(self.version) >= StrictVersion(self.REQ_VERSION_DEPENDS_ON)
1246-
self.supports_extensions = StrictVersion(self.version) >= StrictVersion(self.REQ_VERSION_EXTENSIONS)
12471244

12481245
def check_module_function(self, *args, **kwargs):
12491246
"""Check whether selected module tool matches 'module' function definition."""

0 commit comments

Comments
 (0)