Skip to content

Commit

Permalink
py-scipy: add v1.7.2 (spack#27252)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjstewart committed Nov 11, 2021
1 parent e3645d6 commit 89a59b9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions var/spack/repos/builtin/packages/py-scipy/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class PyScipy(PythonPackage):
maintainers = ['adamjstewart']

version('master', branch='master')
version('1.7.2', sha256='fa2dbabaaecdb502641b0b3c00dec05fb475ae48655c66da16c9ed24eda1e711')
version('1.7.1', sha256='6b47d5fa7ea651054362561a28b1ccc8da9368a39514c1bbf6c0977a1c376764')
version('1.7.0', sha256='998c5e6ea649489302de2c0bc026ed34284f531df89d2bdc8df3a0d44d165739')
version('1.6.3', sha256='a75b014d3294fce26852a9d04ea27b5671d86736beb34acdfc05859246260707')
Expand Down Expand Up @@ -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.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: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@:51.0.0', when='@1.6', type='build')
depends_on('py-setuptools@:57', when='@1.7:', type='build')
Expand All @@ -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.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-cython@0.29.18:2.9', when='@1.7:', type='build')
depends_on('py-pythran@0.9.11:', when='@1.7:', type=('build', 'link'))
depends_on('py-cython@0.29.18:2', when='@1.7:', type='build')
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')

# NOTE: scipy picks up Blas/Lapack from numpy, see
Expand Down

0 comments on commit 89a59b9

Please sign in to comment.