diff --git a/.github/workflows/Python-check.yaml b/.github/workflows/Python-check.yaml index 3c0ee08b..83406afa 100644 --- a/.github/workflows/Python-check.yaml +++ b/.github/workflows/Python-check.yaml @@ -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: diff --git a/python/dalex/NEWS.md b/python/dalex/NEWS.md index 00fa46ca..02c503c7 100644 --- a/python/dalex/NEWS.md +++ b/python/dalex/NEWS.md @@ -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` diff --git a/python/dalex/dalex/__init__.py b/python/dalex/dalex/__init__.py index 4dcb5772..ad1f334d 100644 --- a/python/dalex/dalex/__init__.py +++ b/python/dalex/dalex/__init__.py @@ -9,7 +9,7 @@ from .aspect import Aspect -__version__ = '1.7.0.9000' +__version__ = '1.7.1' __all__ = [ "Arena",