From ea4598bb20bfa55b1eb61ef718ee3bb59e0e8b73 Mon Sep 17 00:00:00 2001 From: Simon Branford <4967+branfosj@users.noreply.github.com> Date: Wed, 3 Jan 2024 14:40:50 +0000 Subject: [PATCH] bump minimum required Tmod (4.x) to 4.3.0 --- easybuild/tools/modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/tools/modules.py b/easybuild/tools/modules.py index 36368fe6e0..ca5f289615 100644 --- a/easybuild/tools/modules.py +++ b/easybuild/tools/modules.py @@ -1319,7 +1319,7 @@ class EnvironmentModules(EnvironmentModulesTcl): NAME = "Environment Modules" COMMAND = os.path.join(os.getenv('MODULESHOME', 'MODULESHOME_NOT_DEFINED'), 'libexec', 'modulecmd.tcl') COMMAND_ENVIRONMENT = 'MODULES_CMD' - REQ_VERSION = '4.0.0' + REQ_VERSION = '4.3.0' MAX_VERSION = None VERSION_REGEXP = r'^Modules\s+Release\s+(?P\d\S*)\s'