My understanding is that this: ```@conda_base( ...
# ask-metaflow
h
My understanding is that this:
Copy code
@conda_base(
    libraries={
        "pandas": "1.5.0",
    },
    python="3.10.6",
)
is kind of the requirements.txt of a flow - ready for potential remote execution. I used:
Copy code
conda search -c conda-forge pandas
to determine possible package versions for each python version. This can return quite a long list. Is there a way to restrict this search to a python version (e.g. 3.10.6 as above)? Sorry google did not return much and chatgpt talks nonsense 😀
✅ 1