summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Christofi <77968333+ChristopherChristofi@users.noreply.github.com>2024-03-25 20:21:07 +0000
committerGitHub <noreply@github.com>2024-03-25 13:21:07 -0700
commit669ed69d8eee1e735d963f67a825c9a8c99d0eec (patch)
tree1d2bfab962dd0dc588d6ae609c5190f19c25d5da
parent7ebb21a0daac7013644b9470579770d5ec1ab59f (diff)
downloadspack-669ed69d8eee1e735d963f67a825c9a8c99d0eec.tar.gz
spack-669ed69d8eee1e735d963f67a825c9a8c99d0eec.tar.bz2
spack-669ed69d8eee1e735d963f67a825c9a8c99d0eec.tar.xz
spack-669ed69d8eee1e735d963f67a825c9a8c99d0eec.zip
py-mne: add new version (#43334)
-rw-r--r--var/spack/repos/builtin/packages/py-mne/package.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-mne/package.py b/var/spack/repos/builtin/packages/py-mne/package.py
index e5fd29ebd5..ebf5d4a16f 100644
--- a/var/spack/repos/builtin/packages/py-mne/package.py
+++ b/var/spack/repos/builtin/packages/py-mne/package.py
@@ -13,8 +13,11 @@ class PyMne(PythonPackage):
pypi = "mne/mne-0.23.4.tar.gz"
git = "https://github.com/mne-tools/mne-python.git"
+ maintainers("ChristopherChristofi")
+
license("BSD-3-Clause")
+ version("1.6.1", sha256="e4f5683d01cef675eddad788bdb6b44cc015dff0fb1ddfca3c4105edfb757ef8")
version("1.4.2", sha256="dd2bf35a90d951bef15ff3a651045b0373eff26018a821667109c727d55c7d63")
version("1.4.0", sha256="7834f5b79c2c9885ca601bbddd8db3c2b2f37c34443fc0caf0447751f6c37a2a")
version("1.3.1", sha256="0d0626d3187dd0ee6f8740d054660a1b5fce4c879f814b745b13c5a587baf32b")
@@ -33,14 +36,17 @@ class PyMne(PythonPackage):
depends_on("py-setuptools-scm@6.2:", when="@1.4:", type="build")
# requirements_base.txt with versions specified in README.rst (marked with *)
+ depends_on("py-numpy@1.21.2:", when="@1.6.1:", type=("build", "run"))
depends_on("py-numpy@1.20.2:", when="@1.4:", type=("build", "run")) # *
depends_on("py-numpy@1.18.1:", when="@1:", type=("build", "run")) # *
depends_on("py-numpy@1.15.4:", when="@0.23:", type=("build", "run"))
depends_on("py-numpy@1.11.3:", type=("build", "run"))
+ depends_on("py-scipy@1.7.1:", when="@1.6.1:", type=("build", "run"))
depends_on("py-scipy@1.6.3:", when="@1.4:", type=("build", "run"))
depends_on("py-scipy@1.4.1:", when="@1:", type=("build", "run")) # *
depends_on("py-scipy@1.1.0:", when="@0.23:", type=("build", "run"))
depends_on("py-scipy@0.17.1:", type=("build", "run"))
+ depends_on("py-matplotlib@3.5:", when="@1.6.1:", type=("build", "run"))
depends_on("py-matplotlib@3.4:", when="@1:", type=("build", "run")) # *
depends_on("py-matplotlib@3.1:", when="@1:", type=("build", "run")) # *
depends_on("py-tqdm", when="@1:", type=("build", "run"))
@@ -48,7 +54,11 @@ class PyMne(PythonPackage):
depends_on("py-decorator", when="@1:", type=("build", "run"))
depends_on("py-packaging", when="@1:", type=("build", "run"))
depends_on("py-jinja2", when="@1:", type=("build", "run"))
+ depends_on(
+ "py-importlib-resources@5.10.2:", when="@1.6.1: ^python@:3.9", type=("build", "run")
+ )
depends_on("py-importlib-resources@5.10.2:", when="@1.4: ^python@:3.8", type=("build", "run"))
+ depends_on("py-lazy-loader@0.3:", when="@1.6.1:", type=("build", "run"))
with when("+hdf5"):
depends_on("py-h5io", type=("build", "run"))