Skip to content

Commit 4197c65

Browse files
committed
remove ppscore
1 parent ee00333 commit 4197c65

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

python/dalex/NEWS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
### v1.8.0 (2026-01-19)
44

5-
* remove the `pkg_resources` dependency breaking `dalex` ([#579](https://github.com/ModelOriented/DALEX/issues/579))
5+
* substitute the deprecated `pkg_resources` dependency that breaks `dalex` ([#579](https://github.com/ModelOriented/DALEX/issues/579))
6+
* remove the `ppscore` optional dependency used by the `aspect` module from `dalex[full]` as it imposes `pandas<2.0.0`
67
* increase the dependency to `python>=3.9` and add `python==3.13` to CI
78
* increase the `plotly` dependency to `>=6.0.0` and fix compatibility issues with the new version, e.g. `titlefont` is now `title_font` ([#573](https://github.com/ModelOriented/DALEX/issues/573))
89

python/dalex/dalex/_global_checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
'flask_cors': '3.0.8',
2727
'requests': '2.24.0',
2828
'kaleido': '0.2.1',
29-
'ppscore': '1.2.0',
3029
'ipywidgets': '7.6.3'
3130
}
31+
# 'ppscore': '1.3.0',
3232
# WARNING
3333
# WARNING
3434

python/dalex/setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ def get_optional_dependencies(rel_path):
3939
od_dict = ast.literal_eval(to_parse)
4040
od_list = [f"{k}>={v}" for k, v in od_dict.items()]
4141
# remove artificial dependency used in test_global.py
42-
if 'dalex' in od_list:
43-
del od_list['dalex']
42+
del od_list[0]
4443
return od_list
4544

4645
def run_setup():
@@ -83,7 +82,7 @@ def run_setup():
8382
'setuptools',
8483
'packaging',
8584
'pandas>=1.5.3',
86-
'numpy>=1.23.3',
85+
'numpy>=1.23.5',
8786
'scipy>=1.6.3',
8887
'plotly>=6.0.0',
8988
'tqdm>=4.61.2',

0 commit comments

Comments
 (0)