mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 21:27:37 -05:00
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:
parent
f407e4b0f9
commit
7ca5dc370d
1 changed files with 5 additions and 3 deletions
|
@ -4012,13 +4012,13 @@ (define-public python2-pystache
|
||||||
(define-public python-joblib
|
(define-public python-joblib
|
||||||
(package
|
(package
|
||||||
(name "python-joblib")
|
(name "python-joblib")
|
||||||
(version "0.14.1")
|
(version "1.1.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "joblib" version))
|
(uri (pypi-uri "joblib" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1j464w137w6s367gl697j1l63g52akydrxgv4czlck36ynjfwc06"))))
|
"0d8ypyhsw1bjr96zan9ms8wbvnzbjqxniq4vcszghcrps7ngqn21"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -4027,7 +4027,9 @@ (define-public python-joblib
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(setenv "JOBLIB_MULTIPROCESSING" "0")
|
(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
|
(native-inputs
|
||||||
`(("python-pytest" ,python-pytest)))
|
`(("python-pytest" ,python-pytest)))
|
||||||
(home-page "https://joblib.readthedocs.io/")
|
(home-page "https://joblib.readthedocs.io/")
|
||||||
|
|
Loading…
Reference in a new issue