diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-11-20 01:01:07 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-11-20 12:02:20 +0100 |
commit | 40d4b541d994c089ccee3c693dd0e994144031f2 (patch) | |
tree | 7a27839fe85c0cdb853f4a22d14505750f361733 /gnu | |
parent | d8b79867696e0c79623925df500cf2973b35a793 (diff) | |
download | guix-40d4b541d994c089ccee3c693dd0e994144031f2.tar.gz |
gnu: python-numba: Remove trailing #T.
* gnu/packages/python-xyz.scm (python-numba)[arguments]: Remove trailing #T from build phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6265770ff0..5ba9b6d62b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -22006,8 +22006,7 @@ validation testing and application logic.") (add-after 'unpack 'disable-proprietary-features (lambda _ (setenv "NUMBA_DISABLE_HSA" "1") - (setenv "NUMBA_DISABLE_CUDA" "1") - #t)) + (setenv "NUMBA_DISABLE_CUDA" "1"))) (replace 'check (lambda* (#:key inputs outputs #:allow-other-keys) (add-installed-pythonpath inputs outputs) |