summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGreg Becker <becker33@llnl.gov>2022-04-26 14:17:17 -0700
committerGitHub <noreply@github.com>2022-04-26 14:17:17 -0700
commitf99614be02dd354210f7ec2c17e3cb3782ba91b1 (patch)
tree57c79fd03749d8c724286fd511afa4bbc5aad423 /lib
parentc02e83092e9b371a4d813a4078df3f4dc1a5ab5f (diff)
downloadspack-f99614be02dd354210f7ec2c17e3cb3782ba91b1.tar.gz
spack-f99614be02dd354210f7ec2c17e3cb3782ba91b1.tar.bz2
spack-f99614be02dd354210f7ec2c17e3cb3782ba91b1.tar.xz
spack-f99614be02dd354210f7ec2c17e3cb3782ba91b1.zip
old concretizer: update deprecation warning (#30227)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/spec.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/spec.py b/lib/spack/spack/spec.py
index 56eb5c6254..c37d3e754e 100644
--- a/lib/spack/spack/spec.py
+++ b/lib/spack/spack/spec.py
@@ -2687,11 +2687,11 @@ class Spec(object):
import spack.concretize
# Add a warning message to inform users that the original concretizer
- # will be removed in v0.18.0
+ # will be removed
if deprecation_warning:
msg = ('the original concretizer is currently being used.\n\tUpgrade to '
'"clingo" at your earliest convenience. The original concretizer '
- 'will be removed from Spack starting at v0.18.0')
+ 'will be removed from Spack in a future version.')
warnings.warn(msg)
if not self.name: