Skip to content

Commit

Permalink
[python] update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hbaniecki committed Oct 2, 2024
1 parent 2f31550 commit 7988bf7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Python-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox==3.28.0 tox-gh-actions==2.12.0
pip install tox tox-gh-actions
- name: Test with tox
run: tox
env:
Expand Down
4 changes: 2 additions & 2 deletions python/dalex/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
## Changelog

### development
### v1.7.1 (2024-10-02)

* replaced instances of x.ptp() (with np.ptp(x)) and np.Inf (with np.inf) to make dx compatible with Numpy>=2.0.0
* Numpy>=2.0.0 compatibility: replace instances of `x.ptp()` with `np.ptp(x)` and `np.Inf` with `np.inf` ([#571](https://github.com/ModelOriented/DALEX/issues/571))
* added a way to pass `sample_weight` to loss functions in `model_parts()` (variable importance) using `weights` from `dx.Explainer` ([#563](https://github.com/ModelOriented/DALEX/issues/563))
* fixed the visualization of `shap_wrapper` for `shap==0.45.0`

Expand Down
2 changes: 1 addition & 1 deletion python/dalex/dalex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from .aspect import Aspect


__version__ = '1.7.0.9000'
__version__ = '1.7.1'

__all__ = [
"Arena",
Expand Down

0 comments on commit 7988bf7

Please sign in to comment.