Skip to content

Commit 37a2e8e

Browse files
authored
Merge pull request #249 from jupyterhub/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents 0b15e4f + 564e8f5 commit 37a2e8e

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

.pre-commit-config.yaml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,32 @@
1111
repos:
1212
# Autoformat: Python code
1313
- repo: https://github.com/psf/black
14-
rev: "22.8.0"
14+
rev: "22.12.0"
1515
hooks:
1616
- id: black
17-
args: [--target-version=py36]
17+
args:
18+
- --target-version=py36
19+
- --target-version=py37
20+
- --target-version=py38
21+
- --target-version=py39
22+
- --target-version=py310
23+
- --target-version=py311
1824

1925
# Autoformat: markdown, yaml
2026
- repo: https://github.com/pre-commit/mirrors-prettier
21-
rev: v3.0.0-alpha.0
27+
rev: v3.0.0-alpha.4
2228
hooks:
2329
- id: prettier
2430

2531
# Lint: Python code
2632
- repo: https://github.com/PyCQA/flake8
27-
rev: "5.0.4"
33+
rev: "6.0.0"
2834
hooks:
2935
- id: flake8
3036

3137
# Misc...
3238
- repo: https://github.com/pre-commit/pre-commit-hooks
33-
rev: v4.3.0
39+
rev: v4.4.0
3440
# ref: https://github.com/pre-commit/pre-commit-hooks#hooks-available
3541
hooks:
3642
# Autoformat: Makes sure files end in a newline and only a newline.
@@ -48,3 +54,8 @@ repos:
4854

4955
# Lint: Checks that non-binary executables have a proper shebang.
5056
- id: check-executables-have-shebangs
57+
58+
59+
# pre-commit.ci config reference: https://pre-commit.ci/#configuration
60+
ci:
61+
autoupdate_schedule: monthly

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
1,
66
2,
77
0,
8-
# "dev", # comment-out this line for a release
8+
# "dev", # comment-out this line for a release
99
)
1010
__version__ = ".".join(map(str, version_info))

0 commit comments

Comments
 (0)