diff options
author | Chris Green <greenc@fnal.gov> | 2017-12-08 13:52:00 -0600 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2017-12-08 20:52:00 +0100 |
commit | e279299b9be8109a446e45eafb82bfedc6cdbd77 (patch) | |
tree | fc3fe8918f43cc438998fe0aa07e0b74453add4e /var | |
parent | c1bc1be2a75b62ea01d8c2e16ab46c379069c50f (diff) | |
download | spack-e279299b9be8109a446e45eafb82bfedc6cdbd77.tar.gz spack-e279299b9be8109a446e45eafb82bfedc6cdbd77.tar.bz2 spack-e279299b9be8109a446e45eafb82bfedc6cdbd77.tar.xz spack-e279299b9be8109a446e45eafb82bfedc6cdbd77.zip |
Relax restriction on lua version. (#5886)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/lmod/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/lmod/package.py b/var/spack/repos/builtin/packages/lmod/package.py index 233f50f53d..66bd5fab81 100644 --- a/var/spack/repos/builtin/packages/lmod/package.py +++ b/var/spack/repos/builtin/packages/lmod/package.py @@ -53,7 +53,7 @@ class Lmod(AutotoolsPackage): version('6.3.7', '0fa4d5a24c41cae03776f781aa2dedc1') version('6.0.1', '91abf52fe5033bd419ffe2842ebe7af9') - depends_on('lua@5.2:') + depends_on('lua@5.1:') depends_on('lua-luaposix', type=('build', 'run')) depends_on('lua-luafilesystem', type=('build', 'run')) depends_on('tcl', type=('build', 'run')) |