From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45236) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j93lZ-0004qJ-40 for guix-patches@gnu.org; Tue, 03 Mar 2020 04:23:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j93lW-0000Fy-TP for guix-patches@gnu.org; Tue, 03 Mar 2020 04:23:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:60932) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j93lW-0000Fi-Qu for guix-patches@gnu.org; Tue, 03 Mar 2020 04:23:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j93lW-00059K-Lg for guix-patches@gnu.org; Tue, 03 Mar 2020 04:23:02 -0500 Subject: [bug#39880] [PATCH] gnu: python-keras: Fix tests. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:45187) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j93kx-0004nH-Ij for guix-patches@gnu.org; Tue, 03 Mar 2020 04:22:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j93kt-0008OI-DO for guix-patches@gnu.org; Tue, 03 Mar 2020 04:22:27 -0500 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:37425) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j93kt-0008N5-85 for guix-patches@gnu.org; Tue, 03 Mar 2020 04:22:23 -0500 Received: from bababa.home (lfbn-idf2-1-1315-147.w92-169.abo.wanadoo.fr [92.169.129.147]) (Authenticated sender: mail@ambrevar.xyz) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id E6504E0027 for ; Tue, 3 Mar 2020 09:22:01 +0000 (UTC) From: Pierre Neidhardt Date: Tue, 3 Mar 2020 10:22:01 +0100 Message-Id: <20200303092201.7174-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 39880@debbugs.gnu.org * gnu/packages/machine-learning.scm (python-keras)[origin]: Add patch to remove unstable selu test. * gnu/local.mk: Include patch. --- gnu/local.mk | 1 + gnu/packages/machine-learning.scm | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/local.mk b/gnu/local.mk index 857345cfad..e5922aae54 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -1329,6 +1329,7 @@ dist_patch_DATA = \ %D%/packages/patches/python-configobj-setuptools.patch \ %D%/packages/patches/python-faker-fix-build-32bit.patch \ %D%/packages/patches/python-keras-integration-test.patch \ + %D%/packages/patches/python-keras-selu-test.patch \ %D%/packages/patches/python-pep8-stdlib-tokenize-compat.patch \ %D%/packages/patches/python-pyfakefs-remove-bad-test.patch \ %D%/packages/patches/python-flint-includes.patch \ diff --git a/gnu/packages/machine-learning.scm b/gnu/packages/machine-learning.scm index 8262a418cc..7fbdef0163 100644 --- a/gnu/packages/machine-learning.scm +++ b/gnu/packages/machine-learning.scm @@ -1863,7 +1863,9 @@ with image data, text data, and sequence data.") (origin (method url-fetch) (uri (pypi-uri "Keras" version)) - (patches (search-patches "python-keras-integration-test.patch")) + (patches + (search-patches "python-keras-selu-test.patch" ; Numerically unstable? + "python-keras-integration-test.patch")) (sha256 (base32 "1j8bsqzh49vjdxy6l1k4iwax5vpjzniynyd041xjavdzvfii1dlh")))) -- 2.25.1