repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v5.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-toml - repo: https://github.com/pycqa/isort rev: 6.0.1 hooks: - id: isort args: [ "--profile", "black", "--filter-files" ] - repo: https://github.com/psf/black rev: 25.1.0 hooks: - id: black language_version: python3.11 - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.16.0 hooks: - id: mypy files: ^(cloudevents/) exclude: ^(cloudevents/tests/) types: [ python ] args: [ ] additional_dependencies: - "pydantic~=2.7"