From bba756d015e7773edcbc276249e7c0e0b181652f Mon Sep 17 00:00:00 2001 From: "H. Vetinari" Date: Mon, 25 Nov 2024 07:42:35 +1100 Subject: [PATCH] clean up an outdated lint w.r.t. CFEP-25 --- conda_smithy/linter/lints.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/conda_smithy/linter/lints.py b/conda_smithy/linter/lints.py index 31b1f2981..25a134f85 100644 --- a/conda_smithy/linter/lints.py +++ b/conda_smithy/linter/lints.py @@ -572,8 +572,9 @@ def lint_require_lower_bound_on_python_version( lints.append( "noarch: python recipes are required to have a lower bound " "on the python version. Typically this means putting " - "`python >=3.6` in **both** `host` and `run` but you should check " - "upstream for the package's Python compatibility." + "`python {{ python_min }}` in `host` and `python >={{ python_min }}` " + "in `run`. Please double-check upstream if the package already " + "requires an even newer Python version." )