-
Notifications
You must be signed in to change notification settings - Fork 86
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
Unpin dependencies from [project.optional-dependencies] #4431
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4431 +/- ##
=======================================
+ Coverage 99.7% 99.7% +0.1%
=======================================
Files 352 352
Lines 40035 40041 +6
=======================================
+ Hits 39914 39920 +6
Misses 121 121 ☔ View full report in Codecov by Sentry. |
"pre-commit >= 2.20.0", | ||
"evalml[docs,test]", | ||
] | ||
updater = [ | ||
"alteryx-open-src-update-checker >= 2.1.0" | ||
] | ||
docs = [ | ||
"docutils >=0.15.2, < 0.17", | ||
"docutils >= 0.15.2, < 0.17", | ||
"pydata-sphinx-theme >= 0.3.1", | ||
"astroid <= 2.6.6", | ||
"Sphinx >= 5.0.0", | ||
"nbconvert >= 6.5.0", | ||
"nbsphinx >= 0.8.5, < 0.9.0", |
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.
A combination of nbsphinx, astroid, and docutils cause the readthedocs
pipeline to fail. I'll need to open a separate ticket to uncap those.
@@ -1530,7 +1530,7 @@ def test_results_getter(AutoMLTestEnv, X_y_binary): | |||
|
|||
assert automl.results["pipeline_results"][0]["mean_cv_score"] == 1.0 | |||
|
|||
with pytest.raises(AttributeError, match="set attribute"): | |||
with pytest.raises(AttributeError): |
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.
Do you know why the changes lines in this file and in test_pipeline_search_plots.py
are showing as uncovered by tests? That seems a bit strange to me.
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 fine overall, but I'm a bit concerned/confused about the changed lines that show up as uncovered by codecov.
Pull Request Description
Closes #4430
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.rst
to include this pull request by adding :pr:123
.