Skip to content
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

Re-add DeprecationWarnings for older scikit-learn support #257

Merged
merged 8 commits into from Dec 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/changelog.rst
Expand Up @@ -14,7 +14,7 @@ Changelog
* Standarizing inputs as pd.Dataframe / pd.Series :pr:`130`
* Documentation Changes
* Adding class properties to API reference :pr:`244`
* Fix and filter FutureWarnings from scikit-learn :pr:`249`
* Fix and filter FutureWarnings from scikit-learn :pr:`249`, :pr:`257`
* Adding Linear Regression to API reference and cleaning up some Sphinx warnings :pr:`227`
* Testing Changes
* Added support for testing on Windows with CircleCI :pr:`226`
Expand Down
2 changes: 2 additions & 0 deletions evalml/__init__.py
Expand Up @@ -8,6 +8,7 @@

with warnings.catch_warnings():
warnings.simplefilter("ignore", FutureWarning)
warnings.simplefilter("ignore", DeprecationWarning)
import skopt

import evalml.demos
Expand All @@ -23,6 +24,7 @@
from evalml.models import AutoClassifier, AutoRegressor

warnings.filterwarnings("ignore", category=FutureWarning)
warnings.filterwarnings("ignore", category=DeprecationWarning)


__version__ = '0.5.2'