-
Notifications
You must be signed in to change notification settings - Fork 426
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: show rendered run dependencies #3798
Comments
Sure, that seems like totally reasonable output after the rendering phase completes. A PR would be welcome, and otherwise we'll try to work it in. |
I think that is nice indeed |
I'd be fine with this being new default behavior, and having a flag to squelch it if so desired. |
I'll definitely do this eventually if nobody else gets to it, but I'd love to be beaten to the punch since I'm currently half-time on parental leave and falling further behind every week. |
we have something like this in boa now -- you can check the screencast in the readme. github.com/thesnakepit/boa |
Hi there, thank you for your contribution! This issue has been automatically marked as stale because it has not had recent activity. It will be closed automatically if no further activity occurs. If you would like this issue to remain open please:
NOTE: If this issue was closed prematurely, please leave a comment. Thanks! |
Reopening for upcoming PR addressing this |
This is a feature request for easier auditing/debugging, especially on CI.
I've made some mistakes over the years in packages that resulted in the wrong runtime dependencies, for example:
hdf5 * mpi_*
)These are all my mistakes (to varying degrees), but result in successfully built and tested packages that don't have the dependencies I expect or intend. Often these mistakes don't turn up until much later when a dependency package is updated. I'd have an easier time catching these if I could see the resulting dependencies of the recipe.
One simple version is to explicitly do
conda render
in conda-forge CI, but it might be nice to include some or all of this in conda-build output by default, particularlyrequirements.run
andbuild.run_exports
, which cannot currently be tested properly.The text was updated successfully, but these errors were encountered: