Skip to content

Commit 5ccdf30

Browse files
authored
Merge pull request optuna#6145 from c-bata/fix-blackdoc-checks
[hotfix] Add version constraint on blackdoc
2 parents cad5190 + f32571d commit 5ccdf30

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
run: |
3030
python -m pip install -U pip
3131
pip install --progress-bar off -U .[checking]
32+
# TODO(c-bata): Remove the version constraint on blackdoc
33+
# See https://github.com/optuna/optuna/issues/6146 for details.
34+
pip install --progress-bar off "blackdoc<0.3.10"
3235
3336
- name: Output installed packages
3437
run: |

.github/workflows/reviewdog.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
run: |
2424
python -m pip install -U pip
2525
pip install --progress-bar off -U .[checking]
26+
# TODO(c-bata): Remove the version constraint on blackdoc
27+
# See https://github.com/optuna/optuna/issues/6146 for details.
28+
pip install --progress-bar off "blackdoc<0.3.10"
2629
2730
- name: Output installed packages
2831
run: |

0 commit comments

Comments
 (0)