File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -321,8 +321,6 @@ def test_parallel_fit(global_random_seed):
321
321
assert_array_almost_equal (eclf1 .predict_proba (X ), eclf2 .predict_proba (X ))
322
322
323
323
324
- # TODO(1.7): remove warning filter when sample_weight is kwarg only
325
- @pytest .mark .filterwarnings ("ignore::FutureWarning" )
326
324
def test_sample_weight (global_random_seed ):
327
325
"""Tests sample_weight parameter of VotingClassifier"""
328
326
clf1 = LogisticRegression (random_state = global_random_seed )
Original file line number Diff line number Diff line change 51
51
)
52
52
53
53
# functions to ignore args / docstring of
54
- # TODO(1.7): remove "sklearn.utils._joblib"
55
54
_DOCSTRING_IGNORES = [
56
55
"sklearn.utils.deprecation.load_mlcomp" ,
57
56
"sklearn.pipeline.make_pipeline" ,
58
57
"sklearn.pipeline.make_union" ,
59
58
"sklearn.utils.extmath.safe_sparse_dot" ,
60
- "sklearn.utils._joblib" ,
61
59
"HalfBinomialLoss" ,
62
60
]
63
61
You can’t perform that action at this time.
0 commit comments