summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/pumi/package.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/pumi/package.py b/var/spack/repos/builtin/packages/pumi/package.py
index 8380564253..12e1b5f35a 100644
--- a/var/spack/repos/builtin/packages/pumi/package.py
+++ b/var/spack/repos/builtin/packages/pumi/package.py
@@ -19,6 +19,12 @@ class Pumi(CMakePackage):
homepage = "https://www.scorec.rpi.edu/pumi"
git = "https://github.com/SCOREC/core.git"
+ # We will use the scorec/core master branch as the 'nightly' version
+ # of pumi in spack. The master branch is more stable than the
+ # scorec/core develop branch and we perfer not to expose spack users
+ # to the added instability. The spack version string is 'develop' since
+ # it compares greater than a numbered version (e.g., 2.1.0). The spack
+ # version string 'master' compares less than a numbered version.
version('develop', branch='master')
version('2.1.0', commit='840fbf6ec49a63aeaa3945f11ddb224f6055ac9f')