Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 1 addition & 4 deletions eli5/__init__.py
Original file line number Diff line number Diff line change
@@ -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,
Expand Down