diff options
-rw-r--r-- | var/spack/repos/builtin/packages/py-jedi/package.py | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/var/spack/repos/builtin/packages/py-jedi/package.py b/var/spack/repos/builtin/packages/py-jedi/package.py index aa58ee6d0b..cdeea3b492 100644 --- a/var/spack/repos/builtin/packages/py-jedi/package.py +++ b/var/spack/repos/builtin/packages/py-jedi/package.py @@ -12,6 +12,7 @@ class PyJedi(PythonPackage): homepage = "https://github.com/davidhalter/jedi" pypi = "jedi/jedi-0.9.0.tar.gz" + version("0.18.2", sha256="bae794c30d07f6d910d32a7048af09b5a39ed740918da923c6b780790ebac612") version("0.18.1", sha256="74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab") version("0.18.0", sha256="92550a404bad8afed881a137ec9a461fed49eca661414be45059329614ed0707") version("0.17.2", sha256="86ed7d9b750603e4ba582ea8edc678657fb4007894a12bcf6f4bb97892f31d20") @@ -38,16 +39,9 @@ class PyJedi(PythonPackage): depends_on("py-setuptools", type=("build", "run")) - depends_on("python@2.6:2.8,3.2:", type=("build", "run"), when="@0.9.0:") - depends_on("python@2.6:2.8,3.3:", type=("build", "run"), when="@0.10.0:") - depends_on("python@2.7:2.8,3.3:", type=("build", "run"), when="@0.12.0:") - depends_on("python@2.7:2.8,3.4:", type=("build", "run"), when="@0.13.3:") - depends_on("python@2.7:2.8,3.5:", type=("build", "run"), when="@0.17.0:") - depends_on("python@3.6:", type=("build", "run"), when="@0.18.0:") - - depends_on("py-parso@0.2.0:", type=("build", "run"), when="@0.12.0") - depends_on("py-parso@0.3.0:", type=("build", "run"), when="@0.12.1:0.14.0") - depends_on("py-parso@0.5.0:", type=("build", "run"), when="@0.14.1:0.15.1") - depends_on("py-parso@0.5.2:", type=("build", "run"), when="@0.15.2:0.16") - depends_on("py-parso@0.7", type=("build", "run"), when="@0.17") - depends_on("py-parso@0.8", type=("build", "run"), when="@0.18.0:") + depends_on("py-parso@0.8", when="@0.18.0:", type=("build", "run")) + depends_on("py-parso@0.7", when="@0.17", type=("build", "run")) + depends_on("py-parso@0.5.2:", when="@0.15.2:0.16", type=("build", "run")) + depends_on("py-parso@0.5.0:", when="@0.14.1:0.15.1", type=("build", "run")) + depends_on("py-parso@0.3.0:", when="@0.12.1:0.14.0", type=("build", "run")) + depends_on("py-parso@0.2.0:", when="@0.12.0", type=("build", "run")) |