py-scipy: add v1.7.2 (#27252)

This commit is contained in:
Adam J. Stewart 2021-11-11 17:40:29 -06:00 committed by GitHub
parent e3645d666e
commit 89a59b98e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,7 @@ class PyScipy(PythonPackage):
maintainers = ['adamjstewart'] maintainers = ['adamjstewart']
version('master', branch='master') version('master', branch='master')
version('1.7.2', sha256='fa2dbabaaecdb502641b0b3c00dec05fb475ae48655c66da16c9ed24eda1e711')
version('1.7.1', sha256='6b47d5fa7ea651054362561a28b1ccc8da9368a39514c1bbf6c0977a1c376764') version('1.7.1', sha256='6b47d5fa7ea651054362561a28b1ccc8da9368a39514c1bbf6c0977a1c376764')
version('1.7.0', sha256='998c5e6ea649489302de2c0bc026ed34284f531df89d2bdc8df3a0d44d165739') version('1.7.0', sha256='998c5e6ea649489302de2c0bc026ed34284f531df89d2bdc8df3a0d44d165739')
version('1.6.3', sha256='a75b014d3294fce26852a9d04ea27b5671d86736beb34acdfc05859246260707') version('1.6.3', sha256='a75b014d3294fce26852a9d04ea27b5671d86736beb34acdfc05859246260707')
@ -51,7 +52,8 @@ class PyScipy(PythonPackage):
depends_on('python@3.5:', when='@1.3:1.4', type=('build', 'link', 'run')) depends_on('python@3.5:', when='@1.3:1.4', type=('build', 'link', 'run'))
depends_on('python@3.6:', when='@1.5.0:1.5', type=('build', 'link', 'run')) depends_on('python@3.6:', when='@1.5.0:1.5', type=('build', 'link', 'run'))
depends_on('python@3.7:', when='@1.6:1.6.1', type=('build', 'link', 'run')) depends_on('python@3.7:', when='@1.6:1.6.1', type=('build', 'link', 'run'))
depends_on('python@3.7:3.9', when='@1.6.2:', type=('build', 'link', 'run')) depends_on('python@3.7:3.9', when='@1.6.2:1.7.1', type=('build', 'link', 'run'))
depends_on('python@3.7:3.10', when='@1.7.2:', type=('build', 'link', 'run'))
depends_on('py-setuptools', when='@:1.5', type='build') depends_on('py-setuptools', when='@:1.5', type='build')
depends_on('py-setuptools@:51.0.0', when='@1.6', type='build') depends_on('py-setuptools@:51.0.0', when='@1.6', type='build')
depends_on('py-setuptools@:57', when='@1.7:', type='build') depends_on('py-setuptools@:57', when='@1.7:', type='build')
@ -67,8 +69,9 @@ class PyScipy(PythonPackage):
depends_on('py-numpy@1.14.5:+blas+lapack', when='@1.5.0:1.5', type=('build', 'link', 'run')) depends_on('py-numpy@1.14.5:+blas+lapack', when='@1.5.0:1.5', type=('build', 'link', 'run'))
depends_on('py-numpy@1.16.5:+blas+lapack', when='@1.6:1.6.1', type=('build', 'link', 'run')) depends_on('py-numpy@1.16.5:+blas+lapack', when='@1.6:1.6.1', type=('build', 'link', 'run'))
depends_on('py-numpy@1.16.5:1.22+blas+lapack', when='@1.6.2:', type=('build', 'link', 'run')) depends_on('py-numpy@1.16.5:1.22+blas+lapack', when='@1.6.2:', type=('build', 'link', 'run'))
depends_on('py-cython@0.29.18:2.9', when='@1.7:', type='build') depends_on('py-cython@0.29.18:2', when='@1.7:', type='build')
depends_on('py-pythran@0.9.11:', when='@1.7:', type=('build', 'link')) depends_on('py-pythran@0.9.11', when='@1.7.0:1.7.1', type=('build', 'link'))
depends_on('py-pythran@0.9.12:0.9', when='@1.7.2:', type=('build', 'link'))
depends_on('py-pytest', type='test') depends_on('py-pytest', type='test')
# NOTE: scipy picks up Blas/Lapack from numpy, see # NOTE: scipy picks up Blas/Lapack from numpy, see