summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Atkins <chuck.atkins@kitware.com>2019-12-05 13:06:47 -0500
committerAdam J. Stewart <ajstewart426@gmail.com>2019-12-05 12:06:47 -0600
commit831133a4c3c72bc09355ac835bbba87991d05502 (patch)
tree53308fc84229d1f6904204e368c554caa7dd026b
parent9a0b1b6aef49f023eeee6aec7d46b9c867fb1577 (diff)
downloadspack-831133a4c3c72bc09355ac835bbba87991d05502.tar.gz
spack-831133a4c3c72bc09355ac835bbba87991d05502.tar.bz2
spack-831133a4c3c72bc09355ac835bbba87991d05502.tar.xz
spack-831133a4c3c72bc09355ac835bbba87991d05502.zip
paraview: Adjust python version constraints (#13999)
py-matplotlib: No constraint necessary for py3 but py2 has an upper bound py-numpy: No constraint necessary for py3 but py2 has an upper bound
-rw-r--r--var/spack/repos/builtin/packages/paraview/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/paraview/package.py b/var/spack/repos/builtin/packages/paraview/package.py
index 0ca4ef375f..998b14182a 100644
--- a/var/spack/repos/builtin/packages/paraview/package.py
+++ b/var/spack/repos/builtin/packages/paraview/package.py
@@ -64,13 +64,13 @@ class Paraview(CMakePackage, CudaPackage):
depends_on('python@2.7:2.8', when='+python', type=('build', 'run'))
depends_on('python@3:', when='+python3', type=('build', 'run'))
- depends_on('py-numpy', when='+python', type=('build', 'run'))
+ depends_on('py-numpy@:1.15.4', when='+python', type=('build', 'run'))
depends_on('py-numpy', when='+python3', type=('build', 'run'))
depends_on('py-mpi4py', when='+python+mpi', type=('build', 'run'))
depends_on('py-mpi4py', when='+python3+mpi', type=('build', 'run'))
depends_on('py-matplotlib@:2', when='+python', type='run')
- depends_on('py-matplotlib@3:', when='+python3', type='run')
+ depends_on('py-matplotlib', when='+python3', type='run')
depends_on('mpi', when='+mpi')
depends_on('qt+opengl', when='@5.3.0:+qt+opengl2')