diff options
author | dunatotatos <contact@dunatotatos.com> | 2020-10-22 21:56:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-22 14:56:54 -0500 |
commit | 61a7900573bfad4c95d6d2520597770fa03189c3 (patch) | |
tree | ba76585cce7107257e1c243923738febf8200beb /var | |
parent | 32a68fbbd4186a513aecdc42026d797ff8410496 (diff) | |
download | spack-61a7900573bfad4c95d6d2520597770fa03189c3.tar.gz spack-61a7900573bfad4c95d6d2520597770fa03189c3.tar.bz2 spack-61a7900573bfad4c95d6d2520597770fa03189c3.tar.xz spack-61a7900573bfad4c95d6d2520597770fa03189c3.zip |
Restrict Python version for Strelka to Python 2. (#19466)
Fix #19465
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/strelka/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/strelka/package.py b/var/spack/repos/builtin/packages/strelka/package.py index a86a19cf21..e86d90d878 100644 --- a/var/spack/repos/builtin/packages/strelka/package.py +++ b/var/spack/repos/builtin/packages/strelka/package.py @@ -15,7 +15,7 @@ class Strelka(CMakePackage): version('2.8.2', sha256='27415f7c14f92e0a6b80416283a0707daed121b8a3854196872981d132f1496b') - depends_on('python@2.4:') + depends_on('python@2.4:2.7') depends_on('zlib') depends_on('bzip2') depends_on('cmake@2.8.5:') |