diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-01-23 10:41:33 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-01-23 12:20:21 -0500 |
commit | 40bd0aa37b4a3ad9637b34c4bc1595e41c25e15b (patch) | |
tree | 7f76f14d4cb5d65494f74243ca1f6b10e733c348 /gnu/packages/python-xyz.scm | |
parent | dfafc29bcf5a30f9162266e1ee11d4af01e03a9a (diff) | |
download | guix-40bd0aa37b4a3ad9637b34c4bc1595e41c25e15b.tar guix-40bd0aa37b4a3ad9637b34c4bc1595e41c25e15b.tar.gz |
gnu: python-jedi: Update to 0.13.2.
* gnu/packages/python-xyz.scm (python-jedi): Update to 0.13.2.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 96a9229345..156778b62e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9672,17 +9672,17 @@ characters, mouse support, and auto suggestions.") (define-public python-jedi (package (name "python-jedi") - (version "0.13.1") + (version "0.13.2") (source (origin (method url-fetch) (uri (pypi-uri "jedi" version)) (sha256 (base32 - "0j11q42g5vjkyhhjpyy8nb0gdxs78m3rpjai7p1hvgpyl9rkyjdp")))) + "1za944msp0f8x36qa8l309jhv0kzlsdh7r9nj3z12y8npnsh45sp")))) (build-system python-build-system) (arguments - `( ;; Many tests are failing with Python 3.7.x as of version 0.13.1 (see: + `( ;; Many tests are failing with Python 3.7.x as of version 0.13.2 (see: ;; https://github.com/davidhalter/jedi/issues/1263) #:tests? #f #:phases |