diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2024-12-14 21:54:40 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2024-12-14 21:54:40 +0100 |
commit | 187a223dcbcf9357013bc4953ca81c0b91abe0f8 (patch) | |
tree | 10012fd519aadc1c14c3441acfdffc1366cf364f /gnu/packages/python-xyz.scm | |
parent | ee2231f86f061ed5161b35ede58fcf12edffb5dc (diff) | |
download | guix-187a223dcbcf9357013bc4953ca81c0b91abe0f8.tar.gz guix-187a223dcbcf9357013bc4953ca81c0b91abe0f8.zip |
gnu: python-ipykernel: Fix build.
* gnu/packages/python-xyz.scm (python-ipykernel)[arguments]<#:test-flags>:
Ignore DeprecationWarning.
Change-Id: I73cb5e43321715d0dbeeff281ecbd9001e1b0e43
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index bf5afd67da..4a6083a610 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13016,7 +13016,7 @@ installing @code{kernelspec}s for use with Jupyter frontends.") (ice-9 match)) #:test-flags ;; XXX: probably not good that this fails - '(list "-k" "not test_copy_to_globals") + '(list "-k" "not test_copy_to_globals" "-Wignore::DeprecationWarning") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'relax-a-bit |