-
-
Notifications
You must be signed in to change notification settings - Fork 185
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
Provide empty matrix on skip #479
Conversation
Awesome @johanneskoester! Thanks for tackling this!! |
@@ -603,6 +603,10 @@ def meta_of_feedstock(forge_dir, config=None): | |||
|
|||
|
|||
def compute_build_matrix(meta, existing_matrix=None, channel_sources=tuple()): | |||
if meta.skip(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems sensible. Thanks for looking into this.
It is not common to skip in in conda-forge and we don't build against it. Hence, the provided error message is correct.
Ok, I consider the issue to be fixed with this PR. If you agree, can we have a quick release? @pelson @jakirkham @ocefpaf. |
LGTM |
Thanks @johanneskoester. A good fix indeed. |
Will there be a release, such that I can rely on it with upcoming R pull requests? |
I wanted to sort out the other R issues. ( #447 ) Otherwise we will just have different problems with R packages. Also wanted to try and consolidate the team update code in I don't know that I will have time to do all of that today. Maybe near week's end. |
Ok, that sounds great and makes a lot of sense. Thank you! |
This test case is able to reproduce the problems discussed in PR #453 (see here).
Further, the PR also contains the resulting fix.
@ocefpaf @jakirkham please let me know what you think.