Skip to content

Commit f22e3b8

Browse files
[pre-commit.ci] pre-commit autoupdate (#139)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.5.0](pre-commit/pre-commit-hooks@v4.4.0...v4.5.0) - [github.com/asottile/pyupgrade: v3.3.1 → v3.15.0](asottile/pyupgrade@v3.3.1...v3.15.0) - [github.com/psf/black: 23.1.0 → 24.2.0](psf/black@23.1.0...24.2.0) - [github.com/pycqa/flake8: 6.0.0 → 7.0.0](PyCQA/flake8@6.0.0...7.0.0) - [github.com/pre-commit/mirrors-mypy: v1.1.1 → v1.8.0](pre-commit/mirrors-mypy@v1.1.1...v1.8.0) - [github.com/PyCQA/pylint: v2.17.0 → v3.0.3](pylint-dev/pylint@v2.17.0...v3.0.3) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 9100d53 commit f22e3b8

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,27 @@ default_language_version:
55
python: python3.10
66
repos:
77
- repo: https://github.com/pre-commit/pre-commit-hooks
8-
rev: v4.4.0 # Use the ref you want to point at
8+
rev: v4.5.0 # Use the ref you want to point at
99
hooks:
1010
- id: trailing-whitespace
1111
- id: check-yaml
1212
- id: end-of-file-fixer
1313
- id: trailing-whitespace
1414
- id: check-executables-have-shebangs
1515
- repo: https://github.com/asottile/pyupgrade
16-
rev: v3.3.1
16+
rev: v3.15.0
1717
hooks:
1818
- id: pyupgrade
1919
- repo: https://github.com/psf/black
20-
rev: 23.1.0
20+
rev: 24.2.0
2121
hooks:
2222
- id: black
2323
- repo: https://github.com/pycqa/flake8
24-
rev: 6.0.0
24+
rev: 7.0.0
2525
hooks:
2626
- id: flake8
2727
- repo: https://github.com/pre-commit/mirrors-mypy
28-
rev: v1.1.1
28+
rev: v1.8.0
2929
hooks:
3030
- id: mypy
3131
# empty args needed in order to match mypy cli behavior
@@ -37,7 +37,7 @@ repos:
3737
- types-setuptools
3838
- types-docutils
3939
- repo: https://github.com/PyCQA/pylint
40-
rev: v2.17.0
40+
rev: v3.0.3
4141
hooks:
4242
- id: pylint
4343
additional_dependencies:

src/doc8/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""doc8 - A docutils linter."""
2+
23
from __future__ import annotations
34
from doc8.version import __version__
45
from doc8.main import doc8 # noqa

0 commit comments

Comments
 (0)