We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9399103 + af2ec71 commit b3654c2Copy full SHA for b3654c2
cscs-checks/prgenv/environ_check.py
@@ -62,12 +62,15 @@ def __init__(self, module_name):
62
sn.assert_found(f'{envvar_prefix}_VERSION', self.stderr)
63
])
64
65
- # These modules should be fixed in later releases
+ # FIXME: These modules should be fixed in later releases,
66
+ # while gcc was fixed in 20.11
67
+
68
cdt = osext.cray_cdt_version()
- if (cdt and cdt <= '20.10' and
- module_name in ['cray-petsc-complex',
69
- 'cray-petsc-complex-64',
70
- 'cudatoolkit', 'gcc']):
+ if ((cdt and cdt <= '20.11' and
+ module_name in ['cray-petsc-complex',
71
+ 'cray-petsc-complex-64',
72
+ 'cudatoolkit']) or
73
+ (cdt and cdt < 20.11 and module_name == 'gcc')):
74
self.valid_systems = []
75
76
self.maintainers = ['EK', 'VH']
0 commit comments