diff options
author | Sharlatan Hellseher <[email protected]> | 2024-11-23 13:34:00 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2024-12-13 20:23:31 +0000 |
commit | d08da5605090fd937e8b891dc3491a8bb9850727 (patch) | |
tree | d7891b05d39fede1648fec71cef4903d019a03e4 | |
parent | 70dbb0720a51eb0584e88a90fe3b1e2868b3e4ce (diff) |
gnu: python-tenacity: Update to 9.0.0.
* gnu/packages/python-xyz.scm (python-tenacity): Update to 9.0.0.
Adjust indentation and fill column.
Change-Id: I64e0aeb95b5b35d9c68649f8228cc36cd5d89179
-rw-r--r-- | gnu/packages/python-xyz.scm | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4850b18e45..687251f549 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2187,21 +2187,26 @@ threads.") (define-public python-tenacity (package (name "python-tenacity") - (version "8.0.1") - (source (origin - (method url-fetch) - (uri (pypi-uri "tenacity" version)) - (sha256 - (base32 - "0bwkvjpjfyi9dgszzad9aww2vc00w3bczjnbifi92cp7wch2l923")))) + (version "9.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "tenacity" version)) + (sha256 + (base32 "0fyp421r038naskvyhj90hkq0az96477njad4rhs6annjz53fzw0")))) (build-system pyproject-build-system) (native-inputs - (list python-setuptools-scm python-tornado-6 python-typeguard - python-pytest python-setuptools python-wheel)) + (list python-pytest + python-setuptools + python-setuptools-scm + python-tornado-6 + python-typeguard + python-wheel)) (home-page "https://github.com/jd/tenacity") (synopsis "Retrying library for python") - (description "Tenacity is a general-purpose python library to simplify the -task of adding retry behavior to just about anything.") + (description + "Tenacity is a general-purpose python library to simplify the task of +adding retry behavior to just about anything.") (license license:asl2.0))) (define-public python-pytelegrambotapi |