summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2021-07-07 17:49:59 +0200
committerGitHub <noreply@github.com>2021-07-07 10:49:59 -0500
commit5e33b20230f1738d4e290a9b4252b02e90a8c171 (patch)
treec4005d61c08d363449ff5b73297c40f911209db8 /var
parentd3c04ed34518961d415dd1ac4cb65ed44b18c380 (diff)
downloadspack-5e33b20230f1738d4e290a9b4252b02e90a8c171.tar.gz
spack-5e33b20230f1738d4e290a9b4252b02e90a8c171.tar.bz2
spack-5e33b20230f1738d4e290a9b4252b02e90a8c171.tar.xz
spack-5e33b20230f1738d4e290a9b4252b02e90a8c171.zip
py-seaborn: add 0.11.1 (#24748)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-seaborn/package.py19
1 files changed, 16 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/py-seaborn/package.py b/var/spack/repos/builtin/packages/py-seaborn/package.py
index 58f0a85fbf..8ecc814ea2 100644
--- a/var/spack/repos/builtin/packages/py-seaborn/package.py
+++ b/var/spack/repos/builtin/packages/py-seaborn/package.py
@@ -17,12 +17,25 @@ class PySeaborn(PythonPackage):
homepage = "http://seaborn.pydata.org/"
pypi = "seaborn/seaborn-0.7.1.tar.gz"
+ version('0.11.1', sha256='44e78eaed937c5a87fc7a892c329a7cc091060b67ebd1d0d306b446a74ba01ad')
version('0.9.0', sha256='76c83f794ca320fb6b23a7c6192d5e185a5fcf4758966a0c0a54baee46d41e2f')
version('0.7.1', sha256='fa274344b1ee72f723bab751c40a5c671801d47a29ee9b5e69fcf63a18ce5c5d')
+ depends_on('python@3.6:', when='@0.10:', type='build')
depends_on('py-setuptools', type='build')
- depends_on('py-numpy', type=('build', 'run'))
- depends_on('py-scipy', type=('build', 'run'))
+ depends_on('py-numpy@1.15:', when='@0.11:', type=('build', 'run'))
+ depends_on('py-numpy@1.9.3:', when='@0.9:', type=('build', 'run'))
+ depends_on('py-numpy', type=('build', 'run'))
+ depends_on('py-scipy@1:', when='@0.11:', type=('build', 'run'))
+ depends_on('py-scipy@1.0.1:', when='@0.10:', type=('build', 'run'))
+ depends_on('py-scipy@0.14:', when='@0.9.0:', type=('build', 'run'))
+ depends_on('py-scipy', type=('build', 'run'))
+ depends_on('py-pandas@0.23:', when='@0.11:', type=('build', 'run'))
+ depends_on('py-pandas@0.22:', when='@0.10:', type=('build', 'run'))
+ depends_on('py-pandas@0.15.2:', when='@0.9:', type=('build', 'run'))
+ depends_on('py-pandas', type=('build', 'run'))
+ depends_on('py-matplotlib@2.2:', when='@0.11:', type=('build', 'run'))
+ depends_on('py-matplotlib@2.1.2:', when='@0.10:', type=('build', 'run'))
+ depends_on('py-matplotlib@1.4.3:', when='@0.9:', type=('build', 'run'))
depends_on('py-matplotlib', type=('build', 'run'))
- depends_on('py-pandas', type=('build', 'run'))