Skip to content

Commit

Permalink
calibrated-explanations v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tuvelofstrom committed Sep 20, 2023
1 parent fe11e56 commit 74c2e80
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -i https://test.pypi.org/simple/ calibrated-explanations==0.2.1a0
pip install calibrated-explanations
pip install pytest
- name: Run tests
run: pytest
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
## [Unreleased]
### Features
### Fixes
The wrapper file with helper classes `CalibratedAsShapExplainer` `CalibratedAsLimeTabularExplanainer` has been removed. The `as_shap` and `as_lime` functions are still working.

## [v0.2.1](https://github.com/Moffran/calibrated_explanations/releases/tag/v0.2.1) - 2023-09-20
[Full changelog](https://github.com/Moffran/calibrated_explanations/compare/v0.2.0...v0.2.1)
### Fixes
The wrapper file with helper classes `CalibratedAsShapExplainer` and `CalibratedAsLimeTabularExplanainer` has been removed. The `as_shap` and `as_lime` functions are still working.

## [v0.2.0](https://github.com/Moffran/calibrated_explanations/releases/tag/v0.2.0) - 2023-09-19
[Full changelog](https://github.com/Moffran/calibrated_explanations/compare/v0.1.1...v0.2.0)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
version = '0.2'

# The full version, including alpha/beta/rc tags
release = '0.2.1a'
release = '0.2.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "calibrated_explanations"
version = "0.2.1a"
version = "0.2.1"
authors = [
{ name="Helena Löfström", email="[email protected]" },
{ name="Tuwe Löfström", email="[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion src/calibrated_explanations/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from ._interval_regressor import IntervalRegressor
from .utils import safe_isinstance, safe_import, check_is_fitted

__version__ = 'v0.2.0'
__version__ = 'v0.2.1'



Expand Down

0 comments on commit 74c2e80

Please sign in to comment.