py-lazyarray: add new version 0.3.2 (#23700)

* py-lazyarray: add new version 0.3.2

Change-Id: Ie8a40f3ff1fe7477e27f6085b9ad6673395258b2

* fixup dependencies

Change-Id: I4b2fb7a0abb462f8df74c383c67517065cd95b67

* Update var/spack/repos/builtin/packages/py-lazyarray/package.py

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Andreas Baumbach 2021-05-20 18:28:23 +02:00 committed by GitHub
parent 3368e06bc6
commit 2716791c7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,8 +13,14 @@ class PyLazyarray(PythonPackage):
homepage = "http://bitbucket.org/apdavison/lazyarray/"
pypi = "lazyarray/lazyarray-0.2.8.tar.gz"
version('0.3.2', sha256='be980534c5950a976709085570f69be9534bdf0f3e5c21a9113de3ee2052683e')
version('0.2.10', sha256='7a53f81b5f3a098c04003d2ad179fc197451fd96bc921510f8534c6af8cc8e19')
version('0.2.8', sha256='aaee4e18117cc512de7a4e64522f37bc6f4bf125ecffdbdbf4e4e390fbdd9ba2')
# Required versions come from doc/installation.txt or:
# https://lazyarray.readthedocs.io/en/latest/installation.html#dependencies
depends_on('python@2.7:', when='@0.3:', type=('build', 'run'))
depends_on('py-numpy@1.3:', type=('build', 'run'))
depends_on('py-numpy@1.8:', type=('build', 'run'), when='@0.3:')
depends_on('py-numpy@1.5:', type=('build', 'run'), when='^python@3:')
depends_on('py-numpy@1.12:', type=('build', 'run'), when='@0.3:^python@3:')