Skip to content

Commit f8905b3

Browse files
authored
[create-pull-request] automated change
1 parent 9001612 commit f8905b3

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929
additional_dependencies: [black==23.*]
3030

3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: "v0.1.3"
32+
rev: "v0.1.5"
3333
hooks:
3434
- id: ruff
3535
args: ["--fix", "--show-fixes"]
@@ -43,7 +43,7 @@ repos:
4343
- id: rst-inline-touching-normal
4444

4545
- repo: https://github.com/pre-commit/mirrors-mypy
46-
rev: "v1.6.1"
46+
rev: "v1.7.0"
4747
hooks:
4848
- id: mypy
4949
files: "(src|tests)"

docs/pages/guides/style.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Here is the snippet to add Black to your `.pre-commit-config.yml`:
108108

109109
```yaml
110110
- repo: https://github.com/psf/black-pre-commit-mirror
111-
rev: "23.10.1"
111+
rev: "23.11.0"
112112
hooks:
113113
- id: black
114114
```
@@ -136,7 +136,7 @@ look like Black, but run 30x faster. Here is the snippet to add Black to your
136136
137137
```yaml
138138
- repo: https://github.com/astral-sh/ruff-pre-commit
139-
rev: "v0.1.3"
139+
rev: "v0.1.5"
140140
hooks:
141141
# id: ruff would go here if using both
142142
- id: ruff-format
@@ -197,7 +197,7 @@ pre-commit hook.
197197
198198
```yaml
199199
- repo: https://github.com/astral-sh/ruff-pre-commit
200-
rev: "v0.1.3"
200+
rev: "v0.1.5"
201201
hooks:
202202
- id: ruff
203203
args: ["--fix", "--show-fixes"]
@@ -529,7 +529,7 @@ The MyPy addition for pre-commit:
529529

530530
```yaml
531531
- repo: https://github.com/pre-commit/mirrors-mypy
532-
rev: "v1.6.1"
532+
rev: "v1.7.0"
533533
hooks:
534534
- id: mypy
535535
files: src
@@ -744,7 +744,7 @@ following pre-commit config:
744744

745745
```yaml
746746
- repo: https://github.com/pre-commit/mirrors-clang-format
747-
rev: "v17.0.3"
747+
rev: "v17.0.4"
748748
hooks:
749749
- id: clang-format
750750
types_or: [c++, c, cuda]

{{cookiecutter.project_name}}/.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ci:
44

55
repos:
66
- repo: https://github.com/psf/black-pre-commit-mirror
7-
rev: "23.10.1"
7+
rev: "23.11.0"
88
hooks:
99
- id: black-jupyter
1010

@@ -45,7 +45,7 @@ repos:
4545
args: [--prose-wrap=always]
4646

4747
- repo: https://github.com/astral-sh/ruff-pre-commit
48-
rev: "v0.1.3"
48+
rev: "v0.1.5"
4949
hooks:
5050
- id: ruff
5151
args: ["--fix", "--show-fixes"]
@@ -63,15 +63,15 @@ repos:
6363
{%- if cookiecutter.backend in ["pybind11", "skbuild", "mesonpy"] %}
6464

6565
- repo: https://github.com/pre-commit/mirrors-clang-format
66-
rev: "v17.0.3"
66+
rev: "v17.0.4"
6767
hooks:
6868
- id: clang-format
6969
types_or: [c++, c, cuda]
7070

7171
{%- endif %}
7272

7373
- repo: https://github.com/pre-commit/mirrors-mypy
74-
rev: "v1.6.1"
74+
rev: "v1.7.0"
7575
hooks:
7676
- id: mypy
7777
files: src|tests

0 commit comments

Comments
 (0)