From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:40142) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jS0uA-0000oP-1f for guix-patches@gnu.org; Fri, 24 Apr 2020 12:10:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jS0tv-0008Ey-16 for guix-patches@gnu.org; Fri, 24 Apr 2020 12:10:17 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:46262) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jS0tu-0008Es-Kt for guix-patches@gnu.org; Fri, 24 Apr 2020 12:10:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jS0tu-0006q0-DC for guix-patches@gnu.org; Fri, 24 Apr 2020 12:10:02 -0400 Subject: [bug#40822] [PATCH] gnu: python-scikit-learn: Make python-joblib a propagated input Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:39850) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jS0su-0000Ar-0p for guix-patches@gnu.org; Fri, 24 Apr 2020 12:09:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jS0ss-0006l3-U7 for guix-patches@gnu.org; Fri, 24 Apr 2020 12:08:59 -0400 Received: from wout4-smtp.messagingengine.com ([64.147.123.20]:40031) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jS0ss-0006iQ-8X for guix-patches@gnu.org; Fri, 24 Apr 2020 12:08:58 -0400 From: Konrad Hinsen Date: Fri, 24 Apr 2020 14:36:20 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40822@debbugs.gnu.org * gnu/packages/machine-learning.scm (python-scikit-learn) Move python-joblib from native to propagated inputs --- gnu/packages/machine-learning.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 9a88b53415..8e902b9e15 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -835,13 +835,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 -- 2.26.2