summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-15 23:48:57 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:09 +0100
commit2a970167910a0ac7d5250a5183b9ade872fb86f3 (patch)
treeed6aad3fee2e3e97e8f2a912a0cbe62dc1037077 /gnu/packages/python-xyz.scm
parent2d4f7ba84e297f634eeb058c53e4333646768b6d (diff)
gnu: python-joblib: Update to 1.5.1.
* gnu/packages/python-xyz.scm (python-joblib): Update to 1.5.1. [arguments] <test-flags>: Skip only one test. [propagated-inputs]: Remove python-psutil. [native-inputs]: Add python-pytest-asyncio. Change-Id: I297d5c146cab585f108f72eb53826b417f71e264
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm33
1 files changed, 16 insertions, 17 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 35040b33a1..97a67a7617 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8214,27 +8214,26 @@ bookmarks using a declarative input in the form of a markdown file.")
(define-public python-joblib
(package
(name "python-joblib")
- (version "1.4.2")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "joblib" version))
- (sha256
- (base32
- "03izdcvc3fa355cclzgvzmjnfwylvblz9q091b9gndi6df0wb0i3"))))
+ (version "1.5.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "joblib" version))
+ (sha256
+ (base32 "0i5lfraj19fx0dqb5z5ahp1cxr0ymzcc7wm9686kvzir3wsnxy7l"))))
(build-system pyproject-build-system)
(arguments
(list
- #:test-flags ; disabled to avoid having to depend on ipython/jupyter
- #~(list
- "--numprocesses" (number->string (parallel-job-count))
- "-k"
- (string-append
- "not test_parallel_call_cached_function_defined_in_jupyter"
- ;; XXX This test times out.
- " and not test_no_resource_tracker_on_import"))))
+ #:test-flags
+ #~(list "--numprocesses" (number->string (parallel-job-count))
+ ;; Disabled to avoid having to depend on ipython/jupyter.
+ "-k" "not test_parallel_call_cached_function_defined_in_jupyter")))
(native-inputs
- (list python-pytest python-pytest-xdist python-setuptools python-wheel))
- (propagated-inputs (list python-psutil))
+ (list python-pytest
+ python-pytest-asyncio
+ python-pytest-xdist
+ python-setuptools
+ python-wheel))
(home-page "https://joblib.readthedocs.io/")
(synopsis "Using Python functions as pipeline jobs")
(description