guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0a3d3998b3e381a4241588ba0c5bd7059d97fd4e
Author: Efraim Flashner <[email protected]>
AuthorDate: Thu Jun 12 16:32:47 2025 +0300

    gnu: python-numpy: Fix building on riscv64-linux.
    
    * gnu/packages/python-xyz.scm (python-numpy)[arguments]: When building
    for riscv64-linux skip another test.
    
    Change-Id: Ibaa1b17beed93387e7f55d26dbbcb42077189188
---
 gnu/packages/python-xyz.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ceda8eddc7..5e958a0bb8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9997,7 +9997,8 @@ include_dirs = ~:*~a/include~%"
                               ;; https://github.com/numpy/numpy/issues/20635
                               #$@(if (target-riscv64?)
                                    `(" and not test_float"
-                                     " and not test_fpclass")
+                                     " and not test_fpclass"
+                                     " and not test_fp_noncontiguous")
                                    '())))))))))
     (native-inputs
      (list gfortran

Reply via email to