diff --git a/python/dalex/NEWS.md b/python/dalex/NEWS.md index 02c503c7..48e92b14 100644 --- a/python/dalex/NEWS.md +++ b/python/dalex/NEWS.md @@ -2,7 +2,7 @@ ### v1.7.1 (2024-10-02) -* 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)) +* `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/tox.ini b/tox.ini index e6f02917..9437a8e7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38,39,310,311} +envlist = py{38,39,310,311,312} toxworkdir={toxinidir}/python/dalex/.tox temp_dir={toxinidir}/python/dalex/.tmp setupdir={toxinidir}/python/dalex/