-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
MAINT/DOC update CI and add note to doc regarding matplotlib #13720
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
doc/install.rst
Outdated
@@ -21,6 +21,9 @@ Scikit-learn requires: | |||
- NumPy (>= 1.11.0), | |||
- SciPy (>= 0.17.0). | |||
|
|||
Scikit-learn plotting capabilities require Matplotlib (>= 1.5.1). Some of the |
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.e., functions start with "plot_")
I guess we need to leave #13335 open since we still need to clean the code in plot_tree. |
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.
Looks good otherwise.
doc/install.rst
Outdated
@@ -21,6 +21,9 @@ Scikit-learn requires: | |||
- NumPy (>= 1.11.0), | |||
- SciPy (>= 0.17.0). | |||
|
|||
Scikit-learn plotting capabilities require Matplotlib (>= 1.5.1). Some of the | |||
scikit-learn examples might require one or more extra dependencies: | |||
scikit-image (>= 0.12.3), pandas (>= 0.18.0), and joblib (>= 0.11) |
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.
joblib is not an extra dependency -- you won't be able to import sklearn
without it ;)
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.
true from now on.
…cikit-learn#13720)" This reverts commit 721f007.
…cikit-learn#13720)" This reverts commit 721f007.
partially address #13335
I added matplotlib to the
ubuntu
build and update the documentation.