Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ repos:
hooks:
- id: flake8
- repo: https://github.com/PyCQA/isort.git
rev: 8.0.0
rev: 8.0.1
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The version 8.0.1 for isort does not exist in the official PyCQA/isort repository. To achieve compatibility with Python 3.13 as intended by this pull request, you should use version 6.0.0 or later, which is the first major version to officially support Python 3.13. Using a non-existent revision will cause the pre-commit hook to fail during installation.

    rev: 6.0.0

hooks:
- id: isort
- repo: https://github.com/pre-commit/mirrors-yapf.git
rev: v0.32.0
- repo: https://github.com/google/yapf.git
rev: v0.43.0
hooks:
- id: yapf
- repo: https://github.com/pre-commit/pre-commit-hooks.git
Expand Down
Loading