From 2ccf54440fadf08ade62769c9fd1f464a449f679 Mon Sep 17 00:00:00 2001 From: Thomas Bury Date: Mon, 29 Apr 2024 17:19:07 +0200 Subject: [PATCH] chore: :bookmark: bump version number --- CHANGELOG.md | 4 ++++ CITATION.cff | 2 +- docs/conf.py | 2 +- docs/requirements.txt | 2 +- src/arfs/__init__.py | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 110c635..6341043 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changes +# 2.2.5 + - [BUG] fix the calculation of the SHAP feature importance for multi-class + - [ENHANCEMENT] return the feature for the importance + # 2.2.4 - [BUG] add axis=1 to compute the max on the right dimension in _reduce_vars_sklearn - [BUG] remove merge causing duplication of the feature importance in _reduce_vars_sklearn diff --git a/CITATION.cff b/CITATION.cff index f7e6443..054d983 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -15,5 +15,5 @@ keywords: - "Machine Learning" license: MIT License url: 'https://github.com/ThomasBury/arfs' -version: 2.2.4 +version: 2.2.5 date-released: 2021-12-18 diff --git a/docs/conf.py b/docs/conf.py index c6042ee..00af604 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ author = "Thomas Bury" # The full version, including alpha/beta/rc tags -release = "2.2.4" +release = "2.2.5" # If extensions (or modules to document with autodoc) are in another # directory, add these directories to sys.path here. If the directory is diff --git a/docs/requirements.txt b/docs/requirements.txt index 547f772..f280e78 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,4 +1,4 @@ -lightgbm==3.3.1 +lightgbm>=3.3.1 matplotlib>=3.5 numpy>=1.21 pandas>=1.4 diff --git a/src/arfs/__init__.py b/src/arfs/__init__.py index 5c00938..c351b5d 100644 --- a/src/arfs/__init__.py +++ b/src/arfs/__init__.py @@ -1,4 +1,4 @@ """init module, providing information about the arfs package """ -__version__ = "2.2.4" +__version__ = "2.2.5"