diff options
author | RĂ©mi Lacroix <remi.lacroix@idris.fr> | 2024-11-18 21:31:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-18 12:31:20 -0800 |
commit | 85c5533e62659cad03c8c366b62d73b562fc638d (patch) | |
tree | 6d12976e12fdf83556409bab36e1debc9d70e146 /var | |
parent | c47cafd11a6dfc543265ead04ef68f8429685191 (diff) | |
download | spack-85c5533e62659cad03c8c366b62d73b562fc638d.tar.gz spack-85c5533e62659cad03c8c366b62d73b562fc638d.tar.bz2 spack-85c5533e62659cad03c8c366b62d73b562fc638d.tar.xz spack-85c5533e62659cad03c8c366b62d73b562fc638d.zip |
hpctoolkit: Update the minimum version for Python dependency (#47564)
New versions of HPCToolKit supports Python from version 3.8.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/hpctoolkit/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/hpctoolkit/package.py b/var/spack/repos/builtin/packages/hpctoolkit/package.py index 33d0768e3d..34900192a0 100644 --- a/var/spack/repos/builtin/packages/hpctoolkit/package.py +++ b/var/spack/repos/builtin/packages/hpctoolkit/package.py @@ -199,7 +199,8 @@ class Hpctoolkit(AutotoolsPackage, MesonPackage): depends_on("mpi", when="+mpi") depends_on("hpcviewer@2022.10:", type="run", when="@2022.10: +viewer") depends_on("hpcviewer", type="run", when="+viewer") - depends_on("python@3.10:", type=("build", "run"), when="+python") + depends_on("python@3.10:", type=("build", "run"), when="@:2023.08 +python") + depends_on("python@3.8:", type=("build", "run"), when="@2024.01: +python") with when("target=x86_64:"): depends_on("intel-xed+pic") |