From 3f15a37af27e93845ce0bdd543300ff0ae459e7a Mon Sep 17 00:00:00 2001 From: Konstantin Lopuhin Date: Wed, 26 Mar 2025 13:45:03 +0000 Subject: [PATCH 1/2] use absolute links so that they work on PyPI --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: From 279533ab828020c56f4717247766efef3d9d396b Mon Sep 17 00:00:00 2001 From: Konstantin Lopuhin Date: Wed, 26 Mar 2025 13:34:14 +0000 Subject: [PATCH 2/2] bump version, update release notes --- CHANGES.rst | 3 ++- eli5/__init__.py | 5 +---- 2 files changed, 3 insertions(+), 5 deletions(-) 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/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,