Skip to content

Commit 610b9c5

Browse files
committed
restrict pandas v3
1 parent d5fdc27 commit 610b9c5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

python/dalex/NEWS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
### v1.8.0 (2026-01-20)
44

55
* substitute the deprecated `pkg_resources` dependency that breaks `dalex` ([#579](https://github.com/ModelOriented/DALEX/issues/579))
6+
* 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))
7+
* restrict the `pandas` dependency to `<3.0.0` to counteract future api changes, e.g. `pd.stack(..., future_stack=False)`.
68
* remove the `ppscore` optional dependency used by the `aspect` module from `dalex[full]` as it imposes `pandas<2.0.0`
79
* increase the dependency to `python>=3.9` and add `python==3.13` to CI
8-
* 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))
910

1011
### v1.7.2 (2025-02-12)
1112

python/dalex/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def run_setup():
8181
install_requires=[
8282
'setuptools',
8383
'packaging',
84-
'pandas>=1.5.3',
84+
'pandas>=1.5.3,<3.0.0',
8585
'numpy>=1.23.5',
8686
'scipy>=1.6.3',
8787
'plotly>=6.0.0',

0 commit comments

Comments
 (0)