gnu: python-jedi: Update to 0.13.3.
* gnu/packages/python-xyz.scm (python-jedi): Update to 0.13.3. (python2-jedi): Enable tests.
This commit is contained in:
parent
dc555d86e1
commit
b8e5de5608
|
@ -10290,17 +10290,17 @@ characters, mouse support, and auto suggestions.")
|
||||||
(define-public python-jedi
|
(define-public python-jedi
|
||||||
(package
|
(package
|
||||||
(name "python-jedi")
|
(name "python-jedi")
|
||||||
(version "0.13.2")
|
(version "0.13.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "jedi" version))
|
(uri (pypi-uri "jedi" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1za944msp0f8x36qa8l309jhv0kzlsdh7r9nj3z12y8npnsh45sp"))))
|
"0nsrjlb57njqppxmi8wjsb1dkad7qa7svx67jbkhixq66lz61c1b"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`( ;; Many tests are failing with Python 3.7.x as of version 0.13.2 (see:
|
`( ;; Many tests are failing with Python 3.7.x as of version 0.13.3 (see:
|
||||||
;; https://github.com/davidhalter/jedi/issues/1263)
|
;; https://github.com/davidhalter/jedi/issues/1263)
|
||||||
#:tests? #f
|
#:tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -10326,7 +10326,11 @@ well.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python2-jedi
|
(define-public python2-jedi
|
||||||
(package-with-python2 python-jedi))
|
(let ((base (package-with-python2 (strip-python2-variant python-jedi))))
|
||||||
|
(package
|
||||||
|
(inherit base)
|
||||||
|
(arguments (substitute-keyword-arguments (package-arguments base)
|
||||||
|
((#:tests? _) #t))))))
|
||||||
|
|
||||||
(define-public ptpython
|
(define-public ptpython
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in New Issue