diff options
author | Carson Woods <carsonwoods@users.noreply.github.com> | 2024-12-03 11:16:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-03 17:16:36 +0100 |
commit | a7eacd77e3fef27818aeb1e235a501b7853f16be (patch) | |
tree | c4653745428455dd800fa727ae88a07842b65d00 /lib | |
parent | 09b7ea0400c44389c535e7ecc8a1a8a21c3bc0ec (diff) | |
download | spack-a7eacd77e3fef27818aeb1e235a501b7853f16be.tar.gz spack-a7eacd77e3fef27818aeb1e235a501b7853f16be.tar.bz2 spack-a7eacd77e3fef27818aeb1e235a501b7853f16be.tar.xz spack-a7eacd77e3fef27818aeb1e235a501b7853f16be.zip |
bug fix: updated warning message to reflect impending v1.0 release (#47887)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/schema/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/schema/config.py b/lib/spack/spack/schema/config.py index e1072a501b..9f380da92b 100644 --- a/lib/spack/spack/schema/config.py +++ b/lib/spack/spack/schema/config.py @@ -106,8 +106,8 @@ properties: Dict[str, Any] = { { "names": ["install_missing_compilers"], "message": "The config:install_missing_compilers option has been deprecated in " - "Spack v0.23, and is currently ignored. It will be removed from config in " - "Spack v0.25.", + "Spack v0.23, and is currently ignored. It will be removed from config after " + "Spack v1.0.", "error": False, }, ], |