py-pynn: add version 0.10.0 (#32307)

This commit is contained in:
Christian Mauch 2022-08-25 17:02:52 +02:00 committed by GitHub
parent c56abe4247
commit 7e0d8fce89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,6 +15,7 @@ class PyPynn(PythonPackage):
pypi = "PyNN/PyNN-0.8.3.tar.gz"
git = "https://github.com/NeuralEnsemble/PyNN.git"
version("0.10.0", sha256="04120fe0e03260d664b337e0ac29d985c3fb3684ef35b1add93a66739891c98f")
version("0.9.1", sha256="bbc60fea3235427191feb2daa0e2fa07eb1c3946104c068ac8a2a0501263b0b1")
version("0.8.3", sha256="9d59e6cffa4714f0c892ec6b32d1f5f8f75ba3a20d8635bac50c047aa6f2537e")
version("0.8beta", commit="ffb0cb1661f2b0f2778db8f71865978fe7a7a6a4")
@ -22,13 +23,22 @@ class PyPynn(PythonPackage):
version("0.7.5", sha256="15f75f422f3b71c6129ecef23f29d8baeb3ed6502e7a321b8a2596c78ef7e03c")
depends_on("python@2.6:2.8,3.3:", type=("build", "run"))
depends_on("python@3.7:", type=("build", "run"), when="@0.10.0:")
# pip silently replaces distutils with setuptools
depends_on("py-setuptools", type="build")
depends_on("py-jinja2@2.7:", type=("build", "run"))
depends_on("py-docutils@0.10:", type=("build", "run"))
depends_on("py-jinja2@2.7:", type=("build", "run"), when="@:0.9")
depends_on("py-docutils@0.10:", type=("build", "run"), when="@:0.9")
depends_on("py-numpy@1.5:", type=("build", "run"))
depends_on("py-numpy@1.16.1:", type=("build", "run"), when="@0.10.0:")
depends_on("py-quantities@0.10:", type=("build", "run"))
depends_on("py-quantities@0.12.1:", type=("build", "run"), when="@0.10.0:")
depends_on("py-lazyarray@0.2.9:", type=("build", "run"))
depends_on("py-lazyarray@0.5.0:", type=("build", "run"), when="@0.10.0:")
depends_on("py-neo@0.3:0.4.1", type=("build", "run"), when="@:0.8.3")
depends_on("py-neo@0.5.0:", type=("build", "run"), when="@0.9.0:")
depends_on("py-neo@0.10.0:", type=("build", "run"), when="@0.10.0:")