From 59268c5ef1cd2a5a4be35705f2416a15c881c0ca Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 3 May 2023 10:21:58 +0300 Subject: [PATCH] gnu: python-numpy: Fix building for armhf-linux. * gnu/packages/python-xyz.scm (python-numpy)[arguments]: Skip another test in the 'check phase when building for armhf-linux. --- gnu/packages/python-xyz.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index e2d082091f..7950d4a775 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6410,6 +6410,10 @@ include_dirs = ~:*~a/include~%" `(" and not test_identityless_reduction_huge_array" " and not (TestKind and test_all)") '()) + ;; This test fails when building from aarch64-linux. + #$@(if (target-arm32?) + `(" and not test_features") + '()) ;; These tests seem to fail on machines without ;; an FPU is still under investigation upstream. ;; https://github.com/numpy/numpy/issues/20635