diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-03-10 03:16:07 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:15 +0200 |
commit | a41f421b669a6476bf8466950ba3af0446f897c1 (patch) | |
tree | 290b3eefad2e78d25aa504ffb77bcde73aa9e763 /gnu/packages/python-science.scm | |
parent | fcc266cf251b81ea8865d99b49069d060719423b (diff) |
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r-- | gnu/packages/python-science.scm | 3 |
1 files changed, 3 insertions, 0 deletions
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 |