diff options
author | RĂ©mi Lacroix <remi.lacroix@idris.fr> | 2021-01-06 10:19:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-06 10:19:48 +0100 |
commit | 3f40d15c848eacc08c1502350d1ef2460771e67b (patch) | |
tree | f5f929cccd5631011ffc5b7e4e244351f4fc2ed7 | |
parent | 5aabd59335243c8464433fd922d581f2ec166b54 (diff) | |
download | spack-3f40d15c848eacc08c1502350d1ef2460771e67b.tar.gz spack-3f40d15c848eacc08c1502350d1ef2460771e67b.tar.bz2 spack-3f40d15c848eacc08c1502350d1ef2460771e67b.tar.xz spack-3f40d15c848eacc08c1502350d1ef2460771e67b.zip |
Gromacs: simplify hwloc dependency. (#20619)
Additionaly remove the version constraint as newer versions work with OpenMPI 4.X.Y and the new experimental concretizer is now available for testing.
-rw-r--r-- | var/spack/repos/builtin/packages/gromacs/package.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/gromacs/package.py b/var/spack/repos/builtin/packages/gromacs/package.py index c99df2c0ba..c93c024bbc 100644 --- a/var/spack/repos/builtin/packages/gromacs/package.py +++ b/var/spack/repos/builtin/packages/gromacs/package.py @@ -102,8 +102,7 @@ class Gromacs(CMakePackage): depends_on('lapack', when='+lapack') depends_on('blas', when='+blas') - # TODO: openmpi constraint; remove when concretizer is fixed - depends_on('hwloc@:1.999', when='@:3.0.0') + depends_on('hwloc', when='+hwloc') patch('gmxDetectCpu-cmake-3.14.patch', when='@2018:2019.3^cmake@3.14.0:') patch('gmxDetectSimd-cmake-3.14.patch', when='@:2017.99^cmake@3.14.0:') |