Skip to content

Commit 18bd184

Browse files
committed
Pin pytest 8 to version 8.0.1
- avoids problem in 8.0.2, see pytest-dev/pytest#12039
1 parent 16a38b1 commit 18bd184

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

.pre-commit-config.yaml

+6-13
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ default_language_version:
22
python: "3.10"
33

44
repos:
5+
- repo: https://github.com/astral-sh/ruff-pre-commit
6+
rev: "v0.2.0"
7+
hooks:
8+
- id: ruff
9+
args: ["--fix"]
10+
- id: ruff-format
511
- repo: https://github.com/codespell-project/codespell
612
rev: v2.2.6
713
hooks:
814
- id: codespell
915
args:
1016
- --ignore-words-list=wronly,afile
11-
- repo: https://github.com/psf/black
12-
rev: 24.2.0
13-
hooks:
14-
- id: black
15-
args: [ --safe, --quiet ]
1617
- repo: https://github.com/asottile/blacken-docs
1718
rev: 1.16.0
1819
hooks:
@@ -36,14 +37,6 @@ repos:
3637
args: ["--in-place", "--remove-unused-variables", "--remove-all-unused-imports"]
3738
language: python
3839
files: \.py$
39-
- repo: https://github.com/PyCQA/flake8
40-
rev: 7.0.0
41-
hooks:
42-
- id: flake8
43-
language_version: python3
44-
additional_dependencies:
45-
- flake8-bugbear
46-
args: ["--extend-ignore=E203", "--max-line-length=88"]
4740
- repo: https://github.com/pre-commit/mirrors-mypy
4841
rev: v1.8.0
4942
hooks:

0 commit comments

Comments
 (0)