From 6e6ac138e670f3621340dae21d364517ea9bfc3e Mon Sep 17 00:00:00 2001
From: "Matthew R. Becker" <beckermr@users.noreply.github.com>
Date: Thu, 7 Nov 2024 05:03:25 -0600
Subject: [PATCH] fix: update `noarch: python` syntax to use more compatible
 form

---
 docs/maintainer/knowledge_base.md | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/docs/maintainer/knowledge_base.md b/docs/maintainer/knowledge_base.md
index 6b26d79c38..98bdbca9d0 100644
--- a/docs/maintainer/knowledge_base.md
+++ b/docs/maintainer/knowledge_base.md
@@ -1483,8 +1483,6 @@ In order to qualify as a noarch python package, all of the following criteria mu
 All recipes employing `noarch: python` should use the `python_min` variable per the following example:
 
 ```yaml title="recipe/meta.yaml"
-{% set python_min = python_min|default("0.1a0") %}
-
 name: package
 source:
   # ...
@@ -1493,7 +1491,7 @@ build:
   # ...
 requirements:
   host:
-    - python {{ python_min }}.*
+    - python {{ python_min }}
     # ...
   run:
     - python >={{ python_min }}
@@ -1501,7 +1499,7 @@ requirements:
 
 test:
   requires:
-    - python ={{ python_min }}
+    - python {{ python_min }}
     # ...
 ```