sharlatan pushed a commit to branch python-team
in repository guix.

commit 8a692289006c80d2feec395eef0444f32e186d25
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Mar 10 03:16:07 2025 +0100

    gnu: python-unyt: Avoid deprecation failure in tests.
    
    * gnu/packages/python-science.scm (python-unyt)[arguments]
    {test-flags}: Ignore failing test.
    
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-science.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index b51a4a0a9b..49e46f7ff3 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -2663,6 +2663,9 @@ annotations on an existing boxplots and barplots 
generated by seaborn.")
        (sha256
         (base32 "0jrq2vhan2h280h6cw1sm5hys2nzmf19w4py64k3nrkc320z9mni"))))
     (build-system pyproject-build-system)
+    (arguments
+     ;; This is a Numpy DeprecationWarning, remove it on next update.
+     (list #:test-flags ''("-k" "not test_h5_io")))
     ;; Pint is optional, but we do not propagate it due to its size.
     (native-inputs
      (list python-pint

Reply via email to