Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ ci:
autoupdate_schedule: monthly
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.12
rev: v0.12.5
hooks:
- id: ruff
- id: ruff-check
- id: ruff-format
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.33.0
rev: 0.33.2
hooks:
- id: check-github-workflows
- id: check-readthedocs
- repo: https://github.com/asottile/blacken-docs
rev: 1.19.1
hooks:
- id: blacken-docs
additional_dependencies: [black==24.10.0 ]
additional_dependencies: [black==25.1.0]
2 changes: 1 addition & 1 deletion tests/test_sqlalchemy_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ class Meta:

def test_auto_field_does_not_accept_arbitrary_kwargs(models):
if int(version("marshmallow")[0]) < 4:
from marshmallow.warnings import RemovedInMarshmallow4Warning
from marshmallow.warnings import RemovedInMarshmallow4Warning # noqa: PLC0415

with pytest.warns(
RemovedInMarshmallow4Warning,
Expand Down