[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
78/231: gnu: python-jedi: Update to 0.19.1.
From: |
guix-commits |
Subject: |
78/231: gnu: python-jedi: Update to 0.19.1. |
Date: |
Tue, 15 Oct 2024 17:11:02 -0400 (EDT) |
sharlatan pushed a commit to branch python-team-old
in repository guix.
commit 9805dc1e5cd326f474007b6fa1b6d24d7d4ba557
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 7 07:57:29 2024 +0200
gnu: python-jedi: Update to 0.19.1.
* gnu/packages/python-xyz.scm (python-jedi): Update to 0.19.1.
[build-system]: Use pyproject-build-system.
[arguments]: Remove custom 'check phase; add 'set-HOME phase.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: Iee74d0850e294cec2e139039d1f93b429e76c29d
---
gnu/packages/python-xyz.scm | 25 +++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c82a48ea9b..64df808c50 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22045,7 +22045,7 @@ scans through a file and detects issues.")
(define-public python-jedi
(package
(name "python-jedi")
- (version "0.18.2")
+ (version "0.19.1")
(source
(origin
(method git-fetch)
@@ -22056,19 +22056,20 @@ scans through a file and detects issues.")
(file-name (git-file-name name version))
(sha256
(base32
- "1nhsajmkn3qj32k5z3ymrd3r6dz2aliv2pqb824m5kaib986dm44"))
- (modules '((guix build utils)))))
- (build-system python-build-system)
+ "1lpvxa16zyhg95s8ji3sm19qz3bawal172xwlzcl5h80mhhfagih"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (setenv "HOME" "/tmp")
- (invoke "python" "-m" "pytest" "-vv")))))))
+ (list
+ #:phases
+ '(modify-phases %standard-phases
+ (add-before 'check 'set-HOME
+ (lambda _ (setenv "HOME" "/tmp"))))))
(native-inputs
- (list python-colorama python-docopt python-pytest))
+ (list python-colorama
+ python-docopt
+ python-pytest
+ python-setuptools
+ python-wheel))
(propagated-inputs
(list python-parso))
(home-page "https://github.com/davidhalter/jedi")
- 53/231: gnu: python-pyproject-metadata: Disable two tests., (continued)
- 53/231: gnu: python-pyproject-metadata: Disable two tests., guix-commits, 2024/10/15
- 54/231: gnu: python-dbus-python: Add missing input., guix-commits, 2024/10/15
- 42/231: gnu: python-pynacl: Add missing inputs., guix-commits, 2024/10/15
- 57/231: guix: toml: Fix parsing empty strings in arrays., guix-commits, 2024/10/15
- 30/231: gnu: python-traitlets: Update to 5.14.1., guix-commits, 2024/10/15
- 50/231: gnu: python-billiard: Add missing inputs., guix-commits, 2024/10/15
- 31/231: gnu: python-prompt-toolkit: Update to 3.0.43., guix-commits, 2024/10/15
- 46/231: gnu: python-mysqlclient: Add missing inputs., guix-commits, 2024/10/15
- 63/231: gnu: python-nbconvert: Add missing texlive inputs., guix-commits, 2024/10/15
- 67/231: gnu: Add python-jsonschema-specifications., guix-commits, 2024/10/15
- 78/231: gnu: python-jedi: Update to 0.19.1.,
guix-commits <=
- 69/231: gnu: Add python-isoduration., guix-commits, 2024/10/15
- 75/231: gnu: Add python-notebook-shim., guix-commits, 2024/10/15
- 71/231: gnu: Add python-fqdn., guix-commits, 2024/10/15
- 91/231: gnu: python-nbconvert: Use pyproject-build-system., guix-commits, 2024/10/15
- 82/231: gnu: python-websocket-client: Update to 1.8.0., guix-commits, 2024/10/15
- 83/231: gnu: python-prometheus-client: Update to 0.20.0., guix-commits, 2024/10/15
- 84/231: gnu: python-pytest-tornasync: Use Tornado 6., guix-commits, 2024/10/15
- 37/231: gnu: python-eventlet: Update to 0.35.2., guix-commits, 2024/10/15
- 43/231: gnu: python-pytest-arraydiff: Add missing inputs., guix-commits, 2024/10/15
- 47/231: gnu: python-vine: Add missing inputs., guix-commits, 2024/10/15