py-minkowskiengine: add missing openblas dependency (#38742)

* py-minkowskiengine: add missing openblas dependency

* Add comment about blas
This commit is contained in:
Manuela Kuhn 2023-07-11 00:21:16 +02:00 committed by GitHub
parent 2163c3701c
commit 8827f01865
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,6 +19,11 @@ class PyMinkowskiengine(PythonPackage, CudaPackage):
depends_on("py-setuptools", type="build")
depends_on("py-pybind11", type="link")
# in newer pip versions --install-option does not exist
depends_on("py-pip@:23.0", type="build")
# According to the documentation other BLAS should be possible too, but
# they didn't work, see https://github.com/spack/spack/pull/38742
depends_on("openblas")
depends_on("py-numpy", type=("build", "run"))
depends_on("py-torch", type=("build", "run"))