-
Notifications
You must be signed in to change notification settings - Fork 24
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
Handle all cases of missing packages when building version matrix. #82
Conversation
@@ -2,3 +2,4 @@ conda >=4 | |||
conda-build >=1.21.7 | |||
anaconda-client | |||
mock | |||
requests==2.11 # work around conda/conda#3947 |
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.
👍
xref: conda/conda#3947
@marqh, could you please take a look at this when you have a chance? |
this change makes sense, it seems like a light touch do you require a release and a build in order to obtain benefit from this change? |
I think that would be ideal, right @jakirkham? |
Yep, a release would be great. |
Thanks @marqh! |
Awesome thanks @marqh and @johanneskoester! 🎉 |
So far, when creating a version matrix, conda-build-all only skipped cases where a specific version was missing or infeasible. This PR fixes a crash when a particular package was not available at all for a certain platform, see conda-forge/conda-smithy#488.
Further, I have fixed the failing test cases, by taking updated conda versions from conda-forge and pinning to requests-2.11 (see conda/conda#3947).