Get Cray OS version from PrgEnv-cray (#10774)
The regex used for finding the Cray OS version from the PrgEnv-cray module was not exact and was at times pulling the version from other PrgEnv modules. This updates the regular expression to be more exact.
This commit is contained in:
parent
2168c08ac5
commit
4d71117080
1 changed files with 2 additions and 2 deletions
|
@ -29,8 +29,8 @@ def __str__(self):
|
|||
return self.name + str(self.version)
|
||||
|
||||
def _detect_crayos_version(self):
|
||||
output = module("avail", "PrgEnv-")
|
||||
matches = re.findall(r'PrgEnv-\w+/(\d+).\d+.\d+', output)
|
||||
output = module("avail", "PrgEnv-cray")
|
||||
matches = re.findall(r'PrgEnv-cray/(\d+).\d+.\d+', output)
|
||||
major_versions = set(matches)
|
||||
latest_version = max(major_versions)
|
||||
return latest_version
|
||||
|
|
Loading…
Reference in a new issue