py-biopython: Require python <= 3.9 for certain versions (#44668)

This commit is contained in:
Gavin John 2024-06-12 01:57:56 -05:00 committed by GitHub
parent fc2ee5cae8
commit bac5253169
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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")