diff options
author | psakievich <psakiev@sandia.gov> | 2024-10-15 11:46:27 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-15 17:46:27 +0000 |
commit | 0477875667e14dedddf59a9b3f5c379879ee2e50 (patch) | |
tree | 48d514082806e113f2ba33f7bc47836e9a6f0670 /var | |
parent | 4d5844b4606c2ab947f406313364adc132455506 (diff) | |
download | spack-0477875667e14dedddf59a9b3f5c379879ee2e50.tar.gz spack-0477875667e14dedddf59a9b3f5c379879ee2e50.tar.bz2 spack-0477875667e14dedddf59a9b3f5c379879ee2e50.tar.xz spack-0477875667e14dedddf59a9b3f5c379879ee2e50.zip |
remove concrete spec constraint from `spack develop` (#46911)
Remove the constraint for concrete specs and simply take the
max(version) if a version is not given. This should default to the
highest infinity version which is also the logical best guess for
doing development.
* Remove concrete verision constriant for develop, set docs
* Add unit-test
* Update lib/spack/docs/environments.rst
Co-authored-by: kwryankrattiger <80296582+kwryankrattiger@users.noreply.github.com>
* Update lib/spack/spack/cmd/develop.py
Co-authored-by: Greg Becker <becker33@llnl.gov>
* Consolidate env collection in cmd
* Style
---------
Co-authored-by: kwryankrattiger <80296582+kwryankrattiger@users.noreply.github.com>
Co-authored-by: Greg Becker <becker33@llnl.gov>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin.mock/packages/mpich/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin.mock/packages/mpich/package.py b/var/spack/repos/builtin.mock/packages/mpich/package.py index 08338033a9..4c87d6932f 100644 --- a/var/spack/repos/builtin.mock/packages/mpich/package.py +++ b/var/spack/repos/builtin.mock/packages/mpich/package.py @@ -16,6 +16,7 @@ class Mpich(Package): variant("debug", default=False, description="Compile MPICH with debug flags.") + version("main", branch="main", git="https://github.com/pmodels/mpich") version("3.0.4", md5="9c5d5d4fe1e17dd12153f40bc5b6dbc0") version("3.0.3", md5="0123456789abcdef0123456789abcdef") version("3.0.2", md5="0123456789abcdef0123456789abcdef") |