guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 7f444dc0d0adaf13476812cb97c467331c565029
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Aug 17 21:07:02 2026 +0200
gnu: python-tenacity: Update to 9.1.4.
* gnu/packages/python-xyz.scm (python-tenacity): Update to 9.1.4.
[native-inputs]: Drop python-wheel.
Relates-to: guix/guix!10625
Reviewed-by: Hugo Buddelmeijer <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 60fe3b249b..c7edbf5e1a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -38861,21 +38861,20 @@ well as an event scheduler.")
(define-public python-tenacity
(package
(name "python-tenacity")
- (version "9.0.0")
+ (version "9.1.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "tenacity" version))
(sha256
- (base32 "0fyp421r038naskvyhj90hkq0az96477njad4rhs6annjz53fzw0"))))
+ (base32 "0fprkhbrh26zm9jxpwmcz5vpr989hd4kpcqs110x0arz4r61vcxd"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
python-setuptools
python-setuptools-scm
python-tornado
- python-typeguard
- python-wheel))
+ python-typeguard))
(home-page "https://github.com/jd/tenacity")
(synopsis "Retrying library for python")
(description