guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 054ac057b6eabe3d5596cbcbed7d9a46c5174441
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jan 18 23:32:35 2026 +0000
gnu: python-traitlets: Update to 5.14.3.
* gnu/packages/python-xyz.scm (python-traitlets): Update to 5.14.3.
[native-inputs]: Remove python-argcomplete, python-mypy,
python-pytest-mock, and
python-pytest-mypy-testing.
Change-Id: I857b475b0b0b35a537429c3741845db327e788b0
---
gnu/packages/python-xyz.scm | 17 +++++------------
1 file changed, 5 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4da3ea3c04..07b343df9d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -37711,25 +37711,18 @@ design and layout.")
(define-public python-traitlets
(package
(name "python-traitlets")
- (version "5.14.1")
+ (version "5.14.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "traitlets" version))
(sha256
- (base32 "0zjj8ha4z5lbhhmvcl3q8wp5qmwqq0lwxma3d8qvh10s6xdi11c5"))))
+ (base32 "1dxnjs5vjfsbvr3jhlhl6696zafdfl1i5b1j6x5lpj826nfmgl4y"))))
(build-system pyproject-build-system)
- (arguments
- (list
- #:test-flags
- '(list "-k" "not mypy_list_typing and not mypy_dict_typing")))
+ ;; tests: 566 passed, 3 skipped, 1 warning
(native-inputs
- (list python-argcomplete
- python-hatchling
- python-mypy
- python-pytest
- python-pytest-mock
- python-pytest-mypy-testing))
+ (list python-hatchling
+ python-pytest))
(home-page "https://ipython.org")
(synopsis "Configuration system for Python applications")
(description