diff options
author | Alberto Invernizzi <9337627+albestro@users.noreply.github.com> | 2023-11-27 09:29:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 09:29:19 +0100 |
commit | 34bce3f4907fc69dcf0ceb9a69a0be6fcab96a84 (patch) | |
tree | b72e7f076da7254569fb5436bcd5c04ec28ab8e9 | |
parent | 7cb70e3258dbdc1ba073bf27b22dc86ecd5abfad (diff) | |
download | spack-34bce3f4907fc69dcf0ceb9a69a0be6fcab96a84.tar.gz spack-34bce3f4907fc69dcf0ceb9a69a0be6fcab96a84.tar.bz2 spack-34bce3f4907fc69dcf0ceb9a69a0be6fcab96a84.tar.xz spack-34bce3f4907fc69dcf0ceb9a69a0be6fcab96a84.zip |
Remove old conflict with gcc@10.3.0 (#41254)
The conflict is captured in CudaPackage and redundant in umpire
-rw-r--r-- | var/spack/repos/builtin/packages/umpire/package.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/umpire/package.py b/var/spack/repos/builtin/packages/umpire/package.py index c64bfdf256..e97db334dc 100644 --- a/var/spack/repos/builtin/packages/umpire/package.py +++ b/var/spack/repos/builtin/packages/umpire/package.py @@ -208,11 +208,6 @@ class Umpire(CachedCMakePackage, CudaPackage, ROCmPackage): # currently only available for cuda. conflicts("+shared", when="+cuda") - # https://github.com/LLNL/Umpire/issues/653 - # This range looks weird, but it ensures the concretizer looks at it as a - # range, not as a concrete version, so that it also matches 10.3.* versions. - conflicts("%gcc@10.3.0:10.3", when="+cuda") - def _get_sys_type(self, spec): sys_type = spec.architecture if "SYS_TYPE" in env: |