py-jedi: add 0.18.1 (#29130)

* py-jedi: add 0.18.1

* fix py-parso version
This commit is contained in:
Manuela Kuhn 2022-02-24 22:09:58 +01:00 committed by GitHub
parent 8f372fc88f
commit dc01f9597e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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:')