summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMoritz Kern <92092328+Moritz-Alexander-Kern@users.noreply.github.com>2023-11-25 15:40:10 +0100
committerGitHub <noreply@github.com>2023-11-25 08:40:10 -0600
commit089e117904a8dd321231caf7c3f3f067385c5a21 (patch)
treeba892e1bfc3794a3b742e13c46410440fd35369d /var
parent1456d9b7270990b128b2b63a8994e3109e213ccc (diff)
downloadspack-089e117904a8dd321231caf7c3f3f067385c5a21.tar.gz
spack-089e117904a8dd321231caf7c3f3f067385c5a21.tar.bz2
spack-089e117904a8dd321231caf7c3f3f067385c5a21.tar.xz
spack-089e117904a8dd321231caf7c3f3f067385c5a21.zip
Update py-neo (#39213)
* add 0.12.0 * remove whitespace * update deps * Update var/spack/repos/builtin/packages/py-neo/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * add dep for python 3.8+ * add dep for python 3.8+ with 0.12.0 --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
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")