diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2021-06-22 17:24:10 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-06-22 17:55:05 +0200 |
commit | 6623d1cd7f3298f2e5c224299d11a77f7ae18bf5 (patch) | |
tree | d9ebf2da1c5ac337ef0b024b367442c5a038f5b8 /gnu/packages/python-science.scm | |
parent | b9a95420abdf4ae7fe9a347031278a44ad6a1cce (diff) | |
download | guix-6623d1cd7f3298f2e5c224299d11a77f7ae18bf5.tar guix-6623d1cd7f3298f2e5c224299d11a77f7ae18bf5.tar.gz |
gnu: python-numpy, python-scipy: Remove dependency on lapack.
The dependency on lapack was unused; the LAPACK interface of OpenBLAS is
used instead. The dependency on lapack was added in
cba256f8faaa18457fc9b77e8b401f17b89bdd75 (numpy) and
719b01c1575b8599b0dca9f245a9d759032f3168 (scipy).
* gnu/packages/python-science.scm (python-scipy)[inputs]: Remove
LAPACK.
* gnu/packages/python-xyz.scm (python-numpy)[inputs]: Likewise.
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r-- | gnu/packages/python-science.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 10fb2403e6..d2c4caac3a 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -73,8 +73,7 @@ ("python-matplotlib" ,python-matplotlib) ("python-pyparsing" ,python-pyparsing))) (inputs - `(("lapack" ,lapack) - ("openblas" ,openblas) + `(("openblas" ,openblas) ("pybind11" ,pybind11))) (native-inputs `(("python-cython" ,python-cython) |