mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-joblib: Update to 1.4.2.
* gnu/packages/python-xyz.scm (python-joblib): Update to 1.4.2. [arguments]<#:test-flags>: Add --numprocesses flag. [native-inputs]: Add python-pytest-xdist. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
7d46ec3e7a
commit
f7fabe82cb
1 changed files with 7 additions and 5 deletions
|
@ -6889,19 +6889,22 @@ bookmarks using a declarative input in the form of a markdown file.")
|
|||
(define-public python-joblib
|
||||
(package
|
||||
(name "python-joblib")
|
||||
(version "1.3.2")
|
||||
(version "1.4.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "joblib" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1cbjjzsh9hzaqr2cqja95673p7j88b8bd02hjpkq8xz147k6by4j"))))
|
||||
"03izdcvc3fa355cclzgvzmjnfwylvblz9q091b9gndi6df0wb0i3"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:test-flags ; disabled to avoid having to depend on ipython/jupyter
|
||||
#~(list "-k" "not test_parallel_call_cached_function_defined_in_jupyter")))
|
||||
(native-inputs (list python-pytest python-setuptools python-wheel))
|
||||
#~(list
|
||||
"--numprocesses" (number->string (parallel-job-count))
|
||||
"-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))
|
||||
(home-page "https://joblib.readthedocs.io/")
|
||||
(synopsis "Using Python functions as pipeline jobs")
|
||||
|
@ -6912,7 +6915,6 @@ and lazy re-evaluation (memoize pattern), easy simple parallel computing
|
|||
logging and tracing of the execution.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
|
||||
(define-public python-daemon
|
||||
(package
|
||||
(name "python-daemon")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue