py-minkowskiengine: add missing openblas dependency (#38742)
* py-minkowskiengine: add missing openblas dependency * Add comment about blas
This commit is contained in:
parent
2163c3701c
commit
8827f01865
@ -19,6 +19,11 @@ class PyMinkowskiengine(PythonPackage, CudaPackage):
|
|||||||
|
|
||||||
depends_on("py-setuptools", type="build")
|
depends_on("py-setuptools", type="build")
|
||||||
depends_on("py-pybind11", type="link")
|
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-numpy", type=("build", "run"))
|
||||||
depends_on("py-torch", type=("build", "run"))
|
depends_on("py-torch", type=("build", "run"))
|
||||||
|
Loading…
Reference in New Issue
Block a user