Version 1.10#

Legend for changelogs

  • Major Feature something big that you couldn’t do before.

  • Feature something that you couldn’t do before.

  • Efficiency an existing feature now may not require as much computation or memory.

  • Enhancement a miscellaneous minor improvement.

  • Fix something that previously didn’t work as documented – or according to reasonable expectations – should now work.

  • API Change you will need to change your code to have the same effect in the future; or a feature will be removed in the future.

Version 1.10.dev0#

June 2026

Support for Array API#

Additional estimators and functions have been updated to include support for all Array API compliant inputs.

See Array API support (experimental) for more details.

Metadata routing#

Refer to the Metadata Routing User Guide for more details.

sklearn.calibration#

sklearn.datasets#

sklearn.ensemble#

sklearn.impute#

  • API Change impute.IterativeImputer is no longer experimental. It can now be imported directly with from sklearn.impute import IterativeImputer, and importing sklearn.experimental.enable_iterative_imputer is no longer required (doing so now raises a warning and is a no-op). It also no longer raises a exceptions.ConvergenceWarning when max_iter is reached without meeting the tol stopping criterion, as non-convergence of the round-robin imputation is expected. The User Guide now documents why the imputed values are not guaranteed to converge and why investing in better imputation often yields diminishing returns for prediction. By Guillaume Lemaitre. #34214

sklearn.inspection#

  • Enhancement The parameter multiclass_colors was deprecated in favour of target_colors in inspection.DecisionBoundaryDisplay. The attribute multiclass_colors_ was also renamed to target_colors_. Now they can be used for binary problems as well without causing confusion (which will be added in a follow-up PR). By Anne Beyer. #34092

sklearn.linear_model#

sklearn.metrics#

sklearn.model_selection#

sklearn.neighbors#

sklearn.pipeline#

  • Fix The default value for the transform_input parameter of Pipeline was changed from None to ("X_val",) so that the validation set, when passed to fit, is always transformed alongside X, to prevent easy to miss mistakes. By Jérémie du Boisberranger. #34263

sklearn.svm#

sklearn.tree#

Code and documentation contributors

Thanks to everyone who has contributed to the maintenance and improvement of the project since version 1.9, including:

TODO: update at the time of the release.