Skip to content

Commit 2e82c6f

Browse files
committed
v0.6.11 RC2
1 parent 9805b78 commit 2e82c6f

File tree

6 files changed

+16
-7
lines changed

6 files changed

+16
-7
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,19 +227,27 @@ jobs:
227227
python -m pip install "bld/sdist/$install_file.tar.gz[debug,notebook,plotly,lime,sensitivity,shap,linear,treeinterpreter,aplr,dash,skoperules,excel,testing]"
228228
cd "docs/"
229229
pip install -r requirements.txt
230-
/bin/sh ./build.sh
230+
if ! /bin/sh ./build.sh; then
231+
echo "::warning title=docs build::Building of docs failed"
232+
exit 78 # no longer works in github, but would mark action step with a warning
233+
fi
231234
- name: Mark step with a warning
232235
if: ${{ steps.build_docs.outcome == 'failure' }}
233236
uses: actions/github-script@v6
234237
with:
235238
script: |
236-
github.rest.checks.create({
239+
await github.rest.checks.create({
237240
owner: context.repo.owner,
238241
repo: context.repo.repo,
239242
name: 'Failed building docs',
240243
head_sha: context.sha,
241244
status: 'completed',
242-
conclusion: 'neutral'
245+
conclusion: 'neutral',
246+
completed_at: new Date().toISOString(),
247+
output: {
248+
title: 'Failed building docs',
249+
summary: 'Failed building docs.'
250+
}
243251
})
244252
- name: Publish docs
245253
uses: actions/upload-artifact@v4

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -712,6 +712,7 @@ We also build on top of many great packages. Please check them out!
712712
- [Explainable Artificial Intelligence in Job Recommendation Systems](http://essay.utwente.nl/96974/1/Tran_MA_EEMCS.pdf)
713713
- [Diagnosis uncertain models for medical risk prediction](https://arxiv.org/pdf/2306.17337.pdf)
714714
- [Extending Explainable Boosting Machines to Scientific Image Data](https://arxiv.org/pdf/2305.16526.pdf)
715+
- [Exploring explanation deficits in subclinical mastitis detection with explainable boosting machines](https://link.springer.com/article/10.1007/s44279-025-00246-z)
715716
- [Pest Presence Prediction Using Interpretable Machine Learning](https://arxiv.org/pdf/2205.07723.pdf)
716717
- [Key Thresholds and Relative Contributions of Knee Geometry, Anteroposterior Laxity, and Body Weight as Risk Factors for Noncontact ACL Injury](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC10184233/pdf/10.1177_23259671231163627.pdf)
717718
- [A clinical prediction model for 10-year risk of self-reported osteoporosis diagnosis in pre- and perimenopausal women](https://pubmed.ncbi.nlm.nih.gov/37273115/)

python/interpret-core/interpret/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Distributed under the MIT software license
33

44
# NOTE: Version is replaced by a regex script.
5-
__version__ = "0.6.10"
5+
__version__ = "0.6.11"

python/interpret-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools.command.sdist import sdist
1313

1414
# NOTE: Version is replaced by a regex script.
15-
version = "0.6.10"
15+
version = "0.6.11"
1616

1717

1818
def _copy_native_code_to_setup():

python/interpret/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
name = "interpret"
77
# NOTE: Version is replaced by a regex script.
8-
version = "0.6.10"
8+
version = "0.6.11"
99
long_description = """
1010
In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
1111

shared/vis/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@interpretml/interpret-inline",
3-
"version": "0.6.10",
3+
"version": "0.6.11",
44
"description": "Interpret inline library for rendering visualizations across all notebook environments.",
55
"main": "index.js",
66
"keywords": [],

0 commit comments

Comments
 (0)