summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-04-12 04:01:27 -0500
committerGitHub <noreply@github.com>2021-04-12 11:01:27 +0200
commite27aa394274b7458aa1d01f636c3698149bde156 (patch)
tree99381615631c717e584048f8e221b01560e6cbac
parentb7f74f6ef6fe980b4ec832913930c6e8b99087b3 (diff)
downloadspack-e27aa394274b7458aa1d01f636c3698149bde156.tar.gz
spack-e27aa394274b7458aa1d01f636c3698149bde156.tar.bz2
spack-e27aa394274b7458aa1d01f636c3698149bde156.tar.xz
spack-e27aa394274b7458aa1d01f636c3698149bde156.zip
mumax: constrain go version (#22927)
Mumax will not build with go-1.16.
-rw-r--r--var/spack/repos/builtin/packages/mumax/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/mumax/package.py b/var/spack/repos/builtin/packages/mumax/package.py
index 660b3d34f4..74dbc63497 100644
--- a/var/spack/repos/builtin/packages/mumax/package.py
+++ b/var/spack/repos/builtin/packages/mumax/package.py
@@ -29,7 +29,7 @@ class Mumax(MakefilePackage, CudaPackage):
description='Use gnuplot for graphs')
depends_on('cuda')
- depends_on('go', type='build')
+ depends_on('go@:1.15', type='build')
depends_on('gnuplot', type='run', when='+gnuplot')
conflicts('~cuda', msg='mumax requires cuda')