Let's say I have a python package that uses pandas, numpy and matplotlib. If I look at their meta.yaml files, I see a lot of dependencies in the requirements section. E.g. compilers like make. Do I need to name all those dependencies from the build and host section also in my own meta.yaml package or does it suffice if I just write:
Requirements:
Host:
- python 3.8
Build:
- python 3.8
Run:
- pandas
- numpy
- matplotlib