From bac52531690aee2eb0cf604eacf8a47d423781e6 Mon Sep 17 00:00:00 2001 From: Gavin John Date: Wed, 12 Jun 2024 01:57:56 -0500 Subject: [PATCH] py-biopython: Require python <= 3.9 for certain versions (#44668) --- var/spack/repos/builtin/packages/py-biopython/package.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/var/spack/repos/builtin/packages/py-biopython/package.py b/var/spack/repos/builtin/packages/py-biopython/package.py index fa3cdeefcc0..65c86fdbced 100644 --- a/var/spack/repos/builtin/packages/py-biopython/package.py +++ b/var/spack/repos/builtin/packages/py-biopython/package.py @@ -27,10 +27,10 @@ class PyBiopython(PythonPackage): version("1.70", sha256="4a7c5298f03d1a45523f32bae1fffcff323ea9dce007fb1241af092f5ab2e45b") version("1.65", sha256="6d591523ba4d07a505978f6e1d7fac57e335d6d62fb5b0bcb8c40bdde5c8998e") - depends_on("python@2.6:2.7,3.3:", type=("build", "run"), when="@1.63:1.68") - depends_on("python@2.7,3.3:", type=("build", "run"), when="@1.69") - depends_on("python@2.7,3.4:", type=("build", "run"), when="@1.70:1.74") - depends_on("python@2.7,3.5:", type=("build", "run"), when="@1.75:1.76") + depends_on("python@2.6:2.7,3.3:3.9", type=("build", "run"), when="@1.63:1.68") + depends_on("python@2.7,3.3:3.9", type=("build", "run"), when="@1.69") + depends_on("python@2.7,3.4:3.9", type=("build", "run"), when="@1.70:1.74") + depends_on("python@2.7,3.5:3.9", type=("build", "run"), when="@1.75:1.76") depends_on("python@3.6:", type=("build", "run"), when="@1.77:") depends_on("py-numpy", type=("build", "run")) depends_on("py-setuptools", type="build")