Skip to content

Commit c370d51

Browse files
authored
Merge pull request #297 from c-bata/fix-dask-ml-workflow
[hotfix] Add the version constraint on dask for dask-ml
2 parents 6757e7c + 0ea1f99 commit c370d51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/dask.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ jobs:
2727
python -m pip install --upgrade pip
2828
pip install --progress-bar off -U setuptools
2929
pip install git+https://github.com/optuna/optuna.git
30-
# TODO(c-bata): Remove the version constraint after dask-ml supports dask 2025.1.0
31-
pip install "dask<2025.1.0"
3230
python -c 'import optuna'
3331
pip install git+https://github.com/optuna/optuna-integration.git
3432
python -c 'import optuna_integration'

.github/workflows/dask_ml.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
python -m pip install --upgrade pip
2828
pip install --progress-bar off -U setuptools
2929
pip install git+https://github.com/optuna/optuna.git
30+
# TODO(c-bata): Remove the version constraint after dask-ml supports dask 2025.1.0
31+
pip install "dask<2025.1.0"
3032
python -c 'import optuna'
3133
3234
pip install -r dask_ml/requirements.txt

0 commit comments

Comments
 (0)