summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2022-02-24 22:09:58 +0100
committerGitHub <noreply@github.com>2022-02-24 15:09:58 -0600
commitdc01f9597ec31579c5f571278bbd4335a9267072 (patch)
tree8d2923768db42e31c833966376db0c1a958111af /var
parent8f372fc88f6e2bfa497ec93e9e307cb80ad44f01 (diff)
downloadspack-dc01f9597ec31579c5f571278bbd4335a9267072.tar.gz
spack-dc01f9597ec31579c5f571278bbd4335a9267072.tar.bz2
spack-dc01f9597ec31579c5f571278bbd4335a9267072.tar.xz
spack-dc01f9597ec31579c5f571278bbd4335a9267072.zip
py-jedi: add 0.18.1 (#29130)
* py-jedi: add 0.18.1 * fix py-parso version
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-jedi/package.py18
1 files changed, 11 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/py-jedi/package.py b/var/spack/repos/builtin/packages/py-jedi/package.py
index 665698bf6d..31cf4f9fa9 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.1', sha256='74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab')
version('0.18.0', sha256='92550a404bad8afed881a137ec9a461fed49eca661414be45059329614ed0707')
version('0.17.2', sha256='08d43addcbd656ed07e929631f8071eec567092bf16f2c19fc7bc272a97a77ef')
version('0.17.1', sha256='807d5d4f96711a2bcfdd5dfa3b1ae6d09aa53832b182090b222b5efb81f52f63')
@@ -34,13 +35,16 @@ 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.4:', type=('build', 'run'), when='@0.13.3')
- depends_on('python@2.7:2.8,3.5:', type=('build', 'run'), when='@0.17.2')
- depends_on('python@3.6:', type=('build', 'run'), when='@0.18.0')
+ 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.7.0:0.7', type=('build', 'run'), when='@0.17.2')
- depends_on('py-parso@0.8.0:0.8', type=('build', 'run'), when='@0.18.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:')