Skip to content
Snippets Groups Projects
Commit 51b34849 authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

fix(py-elephant): CUDA support

parent 175ec8ff
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
from spack.package import * from spack.package import *
class PyElephant(PythonPackage): class PyElephant(PythonPackage, CudaPackage):
"""Elephant is a package for analysis of electrophysiology data in Python""" """Elephant is a package for analysis of electrophysiology data in Python"""
homepage = "http://neuralensemble.org/elephant/" homepage = "http://neuralensemble.org/elephant/"
...@@ -71,6 +71,7 @@ class PyElephant(PythonPackage): ...@@ -71,6 +71,7 @@ class PyElephant(PythonPackage):
depends_on("py-scipy@1.5.4:", type=("build", "run"), when="@0.6.4:") depends_on("py-scipy@1.5.4:", type=("build", "run"), when="@0.6.4:")
depends_on("py-six@1.10.0:", type=("build", "run"), when="@0.6.4:") depends_on("py-six@1.10.0:", type=("build", "run"), when="@0.6.4:")
depends_on("py-tqdm", type=("build", "run"), when="@0.6.4:") depends_on("py-tqdm", type=("build", "run"), when="@0.6.4:")
depends_on("py-pycuda", type=("build", "run"), when="@0.10.0:+cuda")
depends_on("py-pytest", type=("test"), when="@0.6.4:") depends_on("py-pytest", type=("test"), when="@0.6.4:")
depends_on("py-statsmodels@0.12.1:", type=("test"),when="@0.6.4:") depends_on("py-statsmodels@0.12.1:", type=("test"),when="@0.6.4:")
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment