Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@ repos:
hooks:
- id: autopep8
- repo: https://github.com/PyCQA/isort
rev: '6.0.1'
rev: '7.0.0'
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: '25.1.0'
- repo: https://github.com/psf/black-pre-commit-mirror
rev: '25.9.0'
hooks:
- id: black
language_version: python3 # Should be a command that runs python3.6+
- repo: https://github.com/asottile/pyupgrade
rev: v3.20.0
rev: v3.21.0
hooks:
- id: pyupgrade
args: [--py39-plus]
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v2.8.0
rev: v3.1.0
hooks:
- id: setup-cfg-fmt
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -35,6 +35,6 @@ repos:
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.16.1
rev: v1.18.2
hooks:
- id: mypy
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers =
py_modules = sort_all
install_requires =
tokenize-rt>=3.0.1
python_requires = >=3.9
python_requires = >=3.10

[options.entry_points]
console_scripts =
Expand Down
Loading