[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/46: gnu: python-jedi: Update to 0.19.1.
From: |
guix-commits |
Subject: |
15/46: gnu: python-jedi: Update to 0.19.1. |
Date: |
Tue, 7 May 2024 18:34:00 -0400 (EDT) |
rekado pushed a commit to branch python-team
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")
- 10/46: gnu: Add python-hatch-jupyter-builder., (continued)
- 10/46: gnu: Add python-hatch-jupyter-builder., guix-commits, 2024/05/07
- 13/46: gnu: Add python-nbclassic., guix-commits, 2024/05/07
- 02/46: gnu: Add python-pep440., guix-commits, 2024/05/07
- 03/46: gnu: Add python-referencing., guix-commits, 2024/05/07
- 06/46: gnu: Add python-isoduration., guix-commits, 2024/05/07
- 29/46: gnu: python-trio: Use pyproject-build-system., guix-commits, 2024/05/07
- 30/46: gnu: python-jupyter-client: Update to 7.4.4., guix-commits, 2024/05/07
- 35/46: gnu: Add python-jupyter-server-terminals., guix-commits, 2024/05/07
- 33/46: gnu: python-notebook: Update to 6.5.7., guix-commits, 2024/05/07
- 38/46: gnu: python-tabulate: Add Setuptools and Wheel., guix-commits, 2024/05/07
- 15/46: gnu: python-jedi: Update to 0.19.1.,
guix-commits <=
- 08/46: gnu: Add python-fqdn., guix-commits, 2024/05/07
- 11/46: gnu: Add python-pytest-jupyter., guix-commits, 2024/05/07
- 14/46: gnu: python-attrs: Update to 23.2.0., guix-commits, 2024/05/07
- 16/46: gnu: python-send2trash: Update to 1.8.2., guix-commits, 2024/05/07
- 17/46: gnu: python-argon2-cffi: Update to 21.1.0., guix-commits, 2024/05/07
- 18/46: gnu: python-jsonschema: Update to 4.22.0., guix-commits, 2024/05/07
- 19/46: gnu: python-websocket-client: Update to 1.8.0., guix-commits, 2024/05/07
- 20/46: gnu: python-prometheus-client: Update to 0.20.0., guix-commits, 2024/05/07
- 21/46: gnu: python-pytest-tornasync: Use Tornado 6., guix-commits, 2024/05/07
- 23/46: gnu: python-pyzmq: Use Tornado 6., guix-commits, 2024/05/07