We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bda0de7 commit 1083a22Copy full SHA for 1083a22
.github/workflows/lint.yml
@@ -17,7 +17,7 @@ jobs:
17
- name: Install dependencies
18
run: |
19
python -m pip install --upgrade pip
20
- pip install black ruff
+ pip install black==25.1.0 ruff==0.12.2
21
22
- name: Run Black
23
run: black --check .
.pre-commit-config.yaml
@@ -1,6 +1,6 @@
1
repos:
2
- repo: https://github.com/psf/black
3
- rev: "24.2.0"
+ rev: "25.1.0"
4
hooks:
5
- id: black
6
- id: black-jupyter # for formatting jupyter-notebook
@@ -25,7 +25,7 @@ repos:
25
- id: trailing-whitespace
26
27
- repo: https://github.com/astral-sh/ruff-pre-commit
28
- rev: v0.12.1
+ rev: v0.12.2
29
30
- id: ruff
31
args: [--fix]
0 commit comments