summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordunatotatos <contact@dunatotatos.com>2020-10-22 21:56:54 +0200
committerGitHub <noreply@github.com>2020-10-22 14:56:54 -0500
commit61a7900573bfad4c95d6d2520597770fa03189c3 (patch)
treeba76585cce7107257e1c243923738febf8200beb
parent32a68fbbd4186a513aecdc42026d797ff8410496 (diff)
downloadspack-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
-rw-r--r--var/spack/repos/builtin/packages/strelka/package.py2
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:')