File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ History
1919* Documentation test: add a doc testing step (in MAKEFILE and CI)
2020* Increase max line length from 79 to 88 characters
2121* Bump wheel version
22+ * Other minor evolutions
2223
23240.9.1 (2024-09-13)
2425------------------
Original file line number Diff line number Diff line change 2020)
2121from sklearn .pipeline import Pipeline , make_pipeline
2222from sklearn .preprocessing import OneHotEncoder
23+ from sklearn .utils .estimator_checks import check_estimator
2324from sklearn .utils .validation import check_is_fitted
2425from typing_extensions import TypedDict
2526
@@ -1039,3 +1040,8 @@ def test_deprecated_ensemble_regressor_fit_warning() -> None:
10391040 match = r".WARNING: EnsembleRegressor.fit is deprecated.*"
10401041 ):
10411042 ens_reg .fit (X , y )
1043+
1044+
1045+ def test_mapie_regressor_sklearn_estim () -> None :
1046+ """Test that MapieRegressor is an sklearn estimator"""
1047+ check_estimator (MapieRegressor ())
You can’t perform that action at this time.
0 commit comments