File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -1504,14 +1504,16 @@ test:
1504
1504
` ` `
1505
1505
1506
1506
See [CFEP-25](https://github.com/conda-forge/cfep/blob/main/cfep-25.md) for more details on this syntax. If you
1507
- need to override this syntax, you can add a `conda_build_config.yaml` file in your recipe like this :
1507
+ need to override this syntax, you can add a Jinja2 `set` statement (or equivalent `context` variable for v1 recipes)
1508
+ at the top of your recipe like this
1508
1509
1509
- ` ` ` yaml title="recipe/conda_build_config.yaml"
1510
- python_min:
1511
- - 3.10
1510
+ ` ` ` yaml title="recipe/meta.yaml"
1511
+ {% set python_min = "3.10" %}
1512
1512
` ` `
1513
1513
1514
- You will need to [rerender the feedstock](../infrastructure/#conda-forge-admin-please-rerender) after making this change.
1514
+ It also possible to achieve the same effect by adding a `conda_build_config.yaml` file to your recipe. If you go that route,
1515
+ you will need to [rerender the feedstock](../infrastructure/#conda-forge-admin-please-rerender) after adding the
1516
+ ` conda_build_config.yaml` file.
1515
1517
1516
1518
:::note
1517
1519
You can’t perform that action at this time.
0 commit comments