Skip to content

Commit 253e387

Browse files
committed
Merge pull request scikit-learn#5755 from rvraghav93/fix_depr_version
[MRG+2] MNT 0.19 --> 0.20; As the model_selection changes will be released in 0.18 only
2 parents 04ca448 + de5bc4a commit 253e387

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

sklearn/cross_validation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"model_selection module into which all the refactored classes "
4040
"and functions are moved. Also note that the interface of the "
4141
"new CV iterators are different from that of this module. "
42-
"This module will be removed in 0.19.", DeprecationWarning)
42+
"This module will be removed in 0.20.", DeprecationWarning)
4343

4444

4545
__all__ = ['KFold',

sklearn/grid_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
warnings.warn("This module has been deprecated in favor of the "
4141
"model_selection module into which all the refactored classes "
42-
"and functions are moved. This module will be removed in 0.19.",
42+
"and functions are moved. This module will be removed in 0.20.",
4343
DeprecationWarning)
4444

4545

sklearn/learning_curve.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
warnings.warn("This module has been deprecated in favor of the "
2121
"model_selection module into which all the functions are moved."
22-
" This module will be removed in 0.19",
22+
" This module will be removed in 0.20",
2323
DeprecationWarning)
2424

2525

0 commit comments

Comments
 (0)