diff options
author | Jim Galarowicz <jeg@trenzasynergy.com> | 2022-04-07 16:30:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 17:30:37 -0600 |
commit | 012889bc407e811d10f6ef6fde076dd56247a4eb (patch) | |
tree | 28e5ab32ecd8f3308412dea539a00225a3f40435 | |
parent | 8ab6af9ed92572f1d8eda64e67b76cb5b0aabda0 (diff) | |
download | spack-012889bc407e811d10f6ef6fde076dd56247a4eb.tar.gz spack-012889bc407e811d10f6ef6fde076dd56247a4eb.tar.bz2 spack-012889bc407e811d10f6ef6fde076dd56247a4eb.tar.xz spack-012889bc407e811d10f6ef6fde076dd56247a4eb.zip |
survey package: add dependencies for @1.0.3: (#29902)
-rw-r--r-- | var/spack/repos/builtin/packages/survey/package.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/survey/package.py b/var/spack/repos/builtin/packages/survey/package.py index be4033eb8c..9d7480a85e 100644 --- a/var/spack/repos/builtin/packages/survey/package.py +++ b/var/spack/repos/builtin/packages/survey/package.py @@ -68,6 +68,9 @@ class Survey(CMakePackage): depends_on("py-psutil", type=('build', 'run')) depends_on("py-sqlalchemy", type=('build', 'run')) depends_on("py-pyyaml", type=('build', 'run')) + depends_on("py-seaborn", type=('build', 'run'), when='@1.0.3:') + depends_on("py-jinja2", type=('build', 'run'), when='@1.0.3:') + depends_on("py-matplotlib", type=('build', 'run'), when='@1.0.3:') extends('python') |