This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new d9e9a26  gnu: python-scikit-learn: Make python-joblib a propagated 
input.
d9e9a26 is described below

commit d9e9a2617664ae830c77e8a64aa733400a57c566
Author: Konrad Hinsen <[email protected]>
AuthorDate: Fri Apr 24 14:36:20 2020 +0200

    gnu: python-scikit-learn: Make python-joblib a propagated input.
    
    * gnu/packages/machine-learning.scm (python-scikit-learn)
    [native-inputs]: Move 'python-joblib' to ...
    [propagated-inputs]: ... here.
    
    Signed-off-by: Mathieu Othacehe <[email protected]>
---
 gnu/packages/machine-learning.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/machine-learning.scm 
b/gnu/packages/machine-learning.scm
index 0f960ad..f979a64 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -13,6 +13,7 @@
 ;;; Copyright © 2019 Nicolas Goaziou <[email protected]>
 ;;; Copyright © 2019 Guillaume Le Vaillant <[email protected]>
 ;;; Copyright © 2019 Brett Gilio <[email protected]>
+;;; Copyright © 2020 Konrad Hinsen <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -835,13 +836,13 @@ computing environments.")
     (inputs
      `(("openblas" ,openblas)))
     (native-inputs
-     `(("python-joblib" ,python-joblib)
-       ("python-pytest" ,python-pytest)
+     `(("python-pytest" ,python-pytest)
        ("python-pandas" ,python-pandas) ;for tests
        ("python-cython" ,python-cython)))
     (propagated-inputs
      `(("python-numpy" ,python-numpy)
-       ("python-scipy" ,python-scipy)))
+       ("python-scipy" ,python-scipy)
+       ("python-joblib" ,python-joblib)))
     (home-page "https://scikit-learn.org/";)
     (synopsis "Machine Learning in Python")
     (description

Reply via email to