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 }} # ... ```