cp2k: fix lmax variant to use tuple (#19780)
* cp2k: fix lmax variant to use tuple discovered during testing #19501 @dev-zero * retain conversion to string
This commit is contained in:
parent
ef9b8da282
commit
dcf3d8332a
@ -70,7 +70,7 @@ class Cp2k(MakefilePackage, CudaPackage):
|
|||||||
variant('lmax',
|
variant('lmax',
|
||||||
description='Maximum supported angular momentum (HFX and others)',
|
description='Maximum supported angular momentum (HFX and others)',
|
||||||
default='5',
|
default='5',
|
||||||
values=map(str, HFX_LMAX_RANGE),
|
values=tuple(map(str, HFX_LMAX_RANGE)),
|
||||||
multi=False)
|
multi=False)
|
||||||
|
|
||||||
depends_on('python', type='build')
|
depends_on('python', type='build')
|
||||||
|
Loading…
Reference in New Issue
Block a user