-
Notifications
You must be signed in to change notification settings - Fork 92
Do build_conda_pkg from local recipe #2925
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
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2925 +/- ##
=====================================
Coverage 99.7% 99.7%
=====================================
Files 302 302
Lines 28412 28412
=====================================
Hits 28319 28319
Misses 93 93 Continue to review full report at Codecov.
|
core-requirements.txt
Outdated
| requirements-parser>=0.2.0 | ||
| shap>=0.36.0 | ||
| texttable>=1.6.2 | ||
| texttable==1.6.3 |
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.
Will delete prior to merge
| return name | ||
|
|
||
|
|
||
| def test_texttable_version(): |
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.
Will delete prior to merge. But the fact this passes means build_conda_pkg is building from the local recipe!
.github/meta.yaml
Outdated
| - psutil >=5.6.6 | ||
| - requirements-parser >=0.2.0 | ||
| - shap >=0.36.0 | ||
| - texttable ==1.6.3 |
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.
Will revert prior to merge
69bb221 to
2e7e95b
Compare
chukarsten
left a comment
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.
Outstanding. This PR is great by itself, but also great in that it got me to reread the build_conda_pkg section again. Thank you for continually taking steps to streamline this!!
angela97lin
left a comment
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.
I love this, I think this will definitely make it much more obvious for devs :} Thanks, @freddyaboulton! 👏
2e7e95b to
4fe2569
Compare
Pull Request Description
Make it easier/less confusing to fix a failing
build_conda_pkgjob by letting users edit a local copy of the recipe instead.The idea is to hold the latest valid recipe in the EvalML repo as opposed to tracking that in
latest_release_changes. This lets devs make changes to the recipe in isolation to getbuild_conda_pkgto pass. I also figure it'll be more intuitive if all the files needed to make a PR green are located in the EvalML repo.We already have CI in place in the feedstock to check that the feedstock recipe matches the EvalML recipe so the two recipes should always be in synch.
After creating the pull request: in order to pass the release_notes_updated check you will need to update the "Future Release" section of
docs/source/release_notes.rstto include this pull request by adding :pr:123.