summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-neo/package.py21
1 files changed, 16 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/py-neo/package.py b/var/spack/repos/builtin/packages/py-neo/package.py
index 8803b8eebb..801207a479 100644
--- a/var/spack/repos/builtin/packages/py-neo/package.py
+++ b/var/spack/repos/builtin/packages/py-neo/package.py
@@ -14,6 +14,9 @@ class PyNeo(PythonPackage):
homepage = "https://neuralensemble.org/neo"
pypi = "neo/neo-0.4.1.tar.gz"
+ version("0.12.0", sha256="3b6ca4fc05dfdb4e953e253e70994bfbbc8fe2e90958fbda7fa5860caf3fa63a")
+ version("0.11.1", sha256="f4a206044b332ad00b10072b0dc7a70b359fa365ec786f92ab757ef4ae588474")
+ version("0.11.0", sha256="cdf8e1324a3fbbd1efd5618dcd37cfc497b1997923bd710b598472c1d846674a")
version("0.10.2", sha256="2d4218b0826daeea880e155227060029ec38a00238ceb5f097138d9467c6399b")
version("0.10.0", sha256="e591a53e18cfa4478603a0e133f3fa0e07bc016b2a279d21d72cf8196eca8353")
version("0.9.0", sha256="6e31c88d7c52174fa2512df589b2b5003e9471fde27fca9f315f4770ba3bd3cb")
@@ -22,12 +25,20 @@ class PyNeo(PythonPackage):
version("0.4.1", sha256="a5a4f3aa31654d52789f679717c9fb622ad4f59b56d227dca490357b9de0a1ce")
version("0.3.3", sha256="6b80eb5bdc9eb4eca829f7464f861c5f1a3a6289559de037930d529bb3dddefb")
+ depends_on("python@3.8:", type=("build", "run"), when="@0.12.0:")
+
+ # py-setuptools@:61 doesn't support PEP 621
+ depends_on("py-setuptools@62:", type="build", when="@0.12:")
depends_on("py-setuptools", type="build")
- depends_on("py-numpy@1.3.0:", type=("build", "run"), when="@0.3.3:0.4.1")
- depends_on("py-numpy@1.7.1:", type=("build", "run"), when="@0.5.2:0.8.0")
+ depends_on("py-packaging", type=("build", "run"))
+
+ depends_on("py-numpy@1.19.5:", type=("build", "run"), when="@0.12.0:")
+ depends_on("py-numpy@1.18.5:", type=("build", "run"), when="@0.11.0:0.11.1")
+ depends_on("py-numpy@1.16.1:", type=("build", "run"), when="@0.10.0:0.10.2")
depends_on("py-numpy@1.13.0:", type=("build", "run"), when="@0.9.0")
- depends_on("py-numpy@1.16.1:", type=("build", "run"), when="@0.10.0:")
+ depends_on("py-numpy@1.7.1:", type=("build", "run"), when="@0.5.2:0.8.0")
- depends_on("py-quantities@0.9.0:", type=("build", "run"), when="@0.3.3:0.8.0")
- depends_on("py-quantities@0.12.1:", type=("build", "run"), when="@0.9.0:")
+ depends_on("py-quantities@0.14.1:", type=("build", "run"), when="@0.12.0:")
+ depends_on("py-quantities@0.12.1:", type=("build", "run"), when="@0.9.0:0.11.1")
+ depends_on("py-quantities@0.9.0:", type=("build", "run"), when="@0.5.2:0.8.0")