Merge pull request #10318 from pytest-dev/pre-commit-ci-update-config

[pre-commit.ci] pre-commit autoupdate
This commit is contained in:
Bruno Oliveira 2022-10-07 20:04:48 -03:00 committed by GitHub
commit 3c1534944c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View File

@ -1,3 +1,5 @@
default_language_version:
python: "3.10"
repos:
- repo: https://github.com/psf/black
rev: 22.8.0
@ -21,7 +23,7 @@ repos:
exclude: _pytest/(debugging|hookspec).py
language_version: python3
- repo: https://github.com/PyCQA/autoflake
rev: v1.6.0
rev: v1.6.1
hooks:
- id: autoflake
name: autoflake
@ -37,12 +39,12 @@ repos:
- flake8-typing-imports==1.12.0
- flake8-docstrings==1.5.0
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.8.2
rev: v3.8.3
hooks:
- id: reorder-python-imports
args: ['--application-directories=.:src', --py37-plus]
- repo: https://github.com/asottile/pyupgrade
rev: v2.38.0
rev: v2.38.2
hooks:
- id: pyupgrade
args: [--py37-plus]
@ -56,7 +58,7 @@ repos:
hooks:
- id: python-use-type-annotations
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.971
rev: v0.981
hooks:
- id: mypy
files: ^(src/|testing/)

View File

@ -167,7 +167,7 @@ def warns( # noqa: F811
return func(*args[1:], **kwargs)
class WarningsRecorder(warnings.catch_warnings):
class WarningsRecorder(warnings.catch_warnings): # type:ignore[type-arg]
"""A context manager to record raised warnings.
Each recorded warning is an instance of :class:`warnings.WarningMessage`.