Wolf Vollprecht

Results 1457 comments of Wolf Vollprecht

We can change this further to allow Jinja expressions to return `list` and `map` objects to YAML, and then ingest them as lists or YAMLs from Jinja. We could then...

Indeed, it seems to go wrong somewhere in the code. ```yaml context: cuda_version: ${{ env.get("RAPIDS_CUDA_VERSION") }} cuda_major: ${{ (env.get("RAPIDS_CUDA_VERSION") | split("."))[0] }} cuda_major_is_string: ${{ (env.get("RAPIDS_CUDA_VERSION") | split("."))[0] is string }}...

@beckermr the problem that we are fixing is the following: ``` foobar: ${{ "1234" }}

For this case: ``` var: "${{ "1234" }}" ``` The (outer) quotes will _always_ win and force whatever is inside to be a string. The more ambigous case (but not...

I think I can live with your point @beckermr. However, one thing that doesn't work right now is: ``` context: specs: [a,b,c] requirements: run: - ${{ specs }} ``` And...

Yes, I think you need to select a version of python-abi3 that corresponds to your lower bound of Python ...

I updated the docs and we also fixed the additional python ignore

Thank you! Will need some investigation!

Thanks for the additional ping. I was somehow not realizing initially that this is a problem of our clobber registry. I have made the issue in `rattler`: https://github.com/conda/rattler/issues/1912 with some...

Yes, agreed, that would be nice! I'll check your changes asap (was on vacation for the past two weeks).