diff --git a/CHANGES.rst b/CHANGES.rst index 856644c..cc46c98 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,10 @@ Changelog ========= -0.14.0 (?) +0.14.0 (2025-03-26) ------------------- +* add support for scikit-learn 1.6+ * drop support for python 3.6, 3.7, 3.8 * add support for python 3.11, 3.12, 3.13 diff --git a/README.rst b/README.rst index 193210f..ecd53a6 100644 --- a/README.rst +++ b/README.rst @@ -22,10 +22,10 @@ ELI5 ELI5 is a Python package which helps to debug machine learning classifiers and explain their predictions. -.. image:: ./docs/source/static/readme-show-prediction.png +.. image:: https://github.com/eli5-org/eli5/blob/master/docs/source/static/readme-show-prediction.png :alt: explain_prediction for text data -.. image:: ./docs/source/static/readme-show-weights.png +.. image:: https://github.com/eli5-org/eli5/blob/master/docs/source/static/readme-show-weights.png :alt: explain_weights for text data It provides support for the following machine learning frameworks and packages: diff --git a/eli5/__init__.py b/eli5/__init__.py index 50358d3..1bc4586 100644 --- a/eli5/__init__.py +++ b/eli5/__init__.py @@ -1,7 +1,4 @@ -# -*- coding: utf-8 -*- -from __future__ import absolute_import - -__version__ = '0.13.0' +__version__ = '0.14.0' from .formatters import ( format_as_html,