Skip to content

Commit

Permalink
Merge pull request #245 from nabenabe0928/hotfix/fix-ci
Browse files Browse the repository at this point in the history
Hotfix CI by adding version constraints to `dask` and `tensorflow`
  • Loading branch information
HideakiImamura authored Mar 15, 2024
2 parents a540162 + cde1813 commit 5861b23
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/dask_ml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
pip install git+https://github.com/optuna/optuna.git
python -c 'import optuna'
# TODO(nabenabe0928/2024/03/12): Remove this version constraint once the following PR is merged.
# https://github.com/dask/distributed/pull/8575
# NOTE(nabenabe0928): dask-expr supports only python>=3.9.
pip install "dask[dataframe]<2024.3.0"
pip install -r dask_ml/requirements.txt
- name: Run examples
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tensorflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
pip install git+https://github.com/optuna/optuna-integration.git
python -c 'import optuna_integration'
# NOTE(nabenabe0928): Got "AttributeError: module 'tensorflow' has no attribute 'estimator'".
# TODO(nabenabe0928): Remove this version constraint.
pip install "tensorflow<2.16.1"
pip install -r tensorflow/requirements.txt
- name: Run examples
run: |
Expand Down

0 comments on commit 5861b23

Please sign in to comment.