py-jedi: fix python dependency constraints (#48322)

This commit is contained in:
Alec Scott
2024-12-31 21:56:53 -05:00
committed by GitHub
parent 60d321012e
commit 866785bd74

View File

@@ -96,11 +96,14 @@ class PyJedi(PythonPackage):
) )
with default_args(type=("build", "run")): with default_args(type=("build", "run")):
depends_on("python@3.5:3.9", when="@0.17.1:") depends_on("python@3.5:", when="@0.17.1:")
depends_on("python@3.6:3.10", when="@0.18.1:") depends_on("python@3.6:", when="@0.18.1:")
depends_on("python@3.6:3.11", when="@0.19.0:")
depends_on("python@3.6:3.12", when="@0.19.1:") depends_on("python@:3.9", when="@:0.17.1")
depends_on("python@3.6:3.13", when="@0.19.2:") depends_on("python@:3.10", when="@:0.18.1")
depends_on("python@:3.11", when="@:0.19.0")
depends_on("python@:3.12", when="@:0.19.1")
depends_on("python@:3.13", when="@0.19.2:")
depends_on("py-setuptools") depends_on("py-setuptools")