[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#74580] [PATCH 06/14] gnu: python-tqdm: Update to 4.67.1.
From: |
Nicolas Graves |
Subject: |
[bug#74580] [PATCH 06/14] gnu: python-tqdm: Update to 4.67.1. |
Date: |
Thu, 28 Nov 2024 08:52:18 +0100 |
* gnu/packages/python-xyz.scm (python-tqdm): Update to 4.67.1.
[build-system]: Switch to pyproject-build-system.
[arguments]: Use <#:test-flags> instead of <#:phases> to set
tests. Ignore failing test_rlock_creation.
[native-inputs]: Add python-setuptools, python-wheel.
---
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 55571a810f..03c62ff26b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26527,25 +26527,26 @@ (define-public python-pydub
(define-public python-tqdm
(package
(name "python-tqdm")
- (version "4.64.1")
+ (version "4.67.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "tqdm" version))
(sha256
- (base32
- "1r7i9kswpnrx4ppfvzz6discb04j1rqkqxdwa2sc2la900m6hksz"))))
- (build-system python-build-system)
+ (base32 "1wi7cql2fc76b5z9v1sr96ix2gxcb974z8qfydjkmh885k2zkbpq"))))
+ (build-system pyproject-build-system)
(arguments
- '(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda _
- (invoke "pytest" "-vv"
- "-o" "asyncio_mode=auto"
- "-k" "not perf"))))))
+ (list #:test-flags
+ '(list "-o" "asyncio_mode=auto"
+ "-k" "not perf and not test_rlock_creation")))
(native-inputs
- (list python-pytest python-pytest-asyncio python-pytest-timeout
- python-setuptools-scm python-toml))
+ (list python-pytest
+ python-pytest-asyncio
+ python-pytest-timeout
+ python-setuptools
+ python-setuptools-scm
+ python-toml
+ python-wheel))
(home-page "https://github.com/tqdm/tqdm")
(synopsis "Fast, extensible progress meter")
(description
--
2.46.0
- [bug#74580] [PATCH 00/14] [python-team], Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 01/14] gnu: python-prawcore: Update to 2.4.0., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 04/14] gnu: cpplint: Add missing native inputs., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 02/14] gnu: python-praw: Update to 7.8.1., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 03/14] gnu: giara: Update to 1.1.0., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 06/14] gnu: python-tqdm: Update to 4.67.1.,
Nicolas Graves <=
- [bug#74580] [PATCH 09/14] gnu: python-websockets: Update to 13.1., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 07/14] gnu: python-fsspec: Update to 2024.10.0., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 14/14] gnu: python-joblib: Update to 1.4.2., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 08/14] gnu: python-coverage: Update to 7.6.8., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 12/14] gnu: python-httpcore: Update to 1.0.7., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 11/14] gnu: python-coveralls: Update to 4.0.1., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 10/14] gnu: python-pytest-httpx: Update to 0.34.0., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 05/14] gnu: python-ads: Add missing native-inputs., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 13/14] gnu: python-httpx: Update to 0.27.2., Nicolas Graves, 2024/11/28
- [bug#74580] [PATCH 00/14] [python-team], Sharlatan Hellseher, 2024/11/28