diff options
author | Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com> | 2023-10-19 05:03:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-19 06:03:54 -0600 |
commit | 4f49f7b9df1cc60a8bb5b4279362175546209772 (patch) | |
tree | 7f85a4deb87fc78208107dfb78e039f770f237c1 /lib | |
parent | fb584853ddc691c7015846d0d0d11b3d1c882419 (diff) | |
download | spack-4f49f7b9df1cc60a8bb5b4279362175546209772.tar.gz spack-4f49f7b9df1cc60a8bb5b4279362175546209772.tar.bz2 spack-4f49f7b9df1cc60a8bb5b4279362175546209772.tar.xz spack-4f49f7b9df1cc60a8bb5b4279362175546209772.zip |
Stand-alone test feature deprecation postponed to v0.22 (#40600)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/package_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/package_base.py b/lib/spack/spack/package_base.py index 37a08e074b..416b16cefc 100644 --- a/lib/spack/spack/package_base.py +++ b/lib/spack/spack/package_base.py @@ -1157,7 +1157,7 @@ class PackageBase(WindowsRPath, PackageViewMixin, metaclass=PackageMeta): """Return the install test root directory.""" tty.warn( "The 'pkg.install_test_root' property is deprecated with removal " - "expected v0.21. Use 'install_test_root(pkg)' instead." + "expected v0.22. Use 'install_test_root(pkg)' instead." ) return install_test_root(self) @@ -1829,7 +1829,7 @@ class PackageBase(WindowsRPath, PackageViewMixin, metaclass=PackageMeta): """ msg = ( "'pkg.cache_extra_test_sources(srcs) is deprecated with removal " - "expected in v0.21. Use 'cache_extra_test_sources(pkg, srcs)' " + "expected in v0.22. Use 'cache_extra_test_sources(pkg, srcs)' " "instead." ) warnings.warn(msg) |