diff options
author | Jim Galarowicz <jeg@trenzasynergy.com> | 2023-05-29 04:26:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-29 11:26:56 +0200 |
commit | 38d2459f948ec9df12ca44e5d8211b2707f41cb3 (patch) | |
tree | 807ddfaf31679d289abb1054c05556a427b499c6 /var | |
parent | e309f367af24f48b4bd5fbb2b2db7718d4fd224a (diff) | |
download | spack-38d2459f948ec9df12ca44e5d8211b2707f41cb3.tar.gz spack-38d2459f948ec9df12ca44e5d8211b2707f41cb3.tar.bz2 spack-38d2459f948ec9df12ca44e5d8211b2707f41cb3.tar.xz spack-38d2459f948ec9df12ca44e5d8211b2707f41cb3.zip |
survey: add v1.0.8 (#37385)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/survey/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/survey/package.py b/var/spack/repos/builtin/packages/survey/package.py index 2842a5dd9a..79bac92966 100644 --- a/var/spack/repos/builtin/packages/survey/package.py +++ b/var/spack/repos/builtin/packages/survey/package.py @@ -33,7 +33,8 @@ class Survey(CMakePackage): maintainers("jgalarowicz") version("master", branch="master") - version("1.0.7", branch="1.0.7") + version("1.0.8", branch="1.0.8") + version("1.0.7", tag="1.0.7") version("1.0.6", tag="1.0.6") version("1.0.5", tag="1.0.5") version("1.0.4", tag="1.0.4") @@ -79,6 +80,7 @@ class Survey(CMakePackage): depends_on("py-matplotlib", type=("build", "run"), when="@1.0.3:") depends_on("py-more-itertools", type=("build", "run"), when="@1.0.4:") depends_on("py-versioneer", type=("build", "run"), when="@1.0.5:") + depends_on("py-filelock", type=("build", "run"), when="@1.0.7:") extends("python") |