[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/26: gnu: python-traitlets: Update to 5.9.0.
From: |
guix-commits |
Subject: |
03/26: gnu: python-traitlets: Update to 5.9.0. |
Date: |
Wed, 10 May 2023 13:30:57 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit b60ea1cd17b3d988f210aa76eac4f68d0c1a0718
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 9 22:29:21 2023 +0200
gnu: python-traitlets: Update to 5.9.0.
* gnu/packages/python-xyz.scm (python-traitlets): Update to 5.9.0.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-hatchling, python-pre-commit, and
python-pytest-mock.
[arguments]: Remove custom 'check phase.
---
gnu/packages/python-xyz.scm | 17 +++++++----------
1 file changed, 7 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 74103403bb..ac9d077151 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9704,23 +9704,20 @@ connect strings, then issue SQL commands within IPython
or IPython Notebook.")
(define-public python-traitlets
(package
(name "python-traitlets")
- (version "5.1.1")
+ (version "5.9.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "traitlets" version))
(sha256
(base32
- "1ivhxglsrnhqw4g98ihddn7i5f6976gpk31fijwq473wb9n4b7q5"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-vv" "traitlets")))))))
+ "1ndslgsan1g5xhrvxrv2x03zcfvjb8nzfd90y1m7bkv8khdf5kgn"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pytest))
+ (list python-hatchling
+ python-pre-commit
+ python-pytest
+ python-pytest-mock))
(home-page "https://ipython.org")
(synopsis "Configuration system for Python applications")
(description
- 07/26: gnu: Add python-mir-eval., (continued)
- 07/26: gnu: Add python-mir-eval., guix-commits, 2023/05/10
- 24/26: gnu: Add python-docstring-parser., guix-commits, 2023/05/10
- 18/26: gnu: Add python-types-urllib3., guix-commits, 2023/05/10
- 04/26: gnu: python-pytorch-for-r-torch: Define as alias for python-pytorch., guix-commits, 2023/05/10
- 21/26: gnu: python-torchvision: Update to 0.15.2., guix-commits, 2023/05/10
- 05/26: gnu: Add python-lightning-cloud., guix-commits, 2023/05/10
- 11/26: gnu: python-pillow-simd: Update to 9.2.0., guix-commits, 2023/05/10
- 09/26: gnu: Add python-torchmetrics., guix-commits, 2023/05/10
- 12/26: gnu: Add python-dateutils., guix-commits, 2023/05/10
- 17/26: gnu: Add python-fastapi-for-pytorch-lightning., guix-commits, 2023/05/10
- 03/26: gnu: python-traitlets: Update to 5.9.0.,
guix-commits <=