gnu: python-joblib: Update to 1.1.0.

* gnu/packages/python-xyz.scm (python-joblib): Update to 1.1.0.
[arguments]: Disable one test.
This commit is contained in:
Ricardo Wurmus 2021-11-20 12:38:11 +01:00
parent f407e4b0f9
commit 7ca5dc370d
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -4012,13 +4012,13 @@ (define-public python2-pystache
(define-public python-joblib
(package
(name "python-joblib")
(version "0.14.1")
(version "1.1.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "joblib" version))
(sha256
(base32
"1j464w137w6s367gl697j1l63g52akydrxgv4czlck36ynjfwc06"))))
"0d8ypyhsw1bjr96zan9ms8wbvnzbjqxniq4vcszghcrps7ngqn21"))))
(build-system python-build-system)
(arguments
`(#:phases
@ -4027,7 +4027,9 @@ (define-public python-joblib
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(setenv "JOBLIB_MULTIPROCESSING" "0")
(invoke "pytest" "-v" "joblib")))))))
(invoke "pytest" "-v" "joblib"
;; We disable this test to avoid having to depend on ipython/jupyter
"-k" "not test_parallel_call_cached_function_defined_in_jupyter")))))))
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://joblib.readthedocs.io/")