compat lint py313#69
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the .pre-commit-config.yaml file by bumping the isort version and migrating the yapf hook to its official repository with an updated version. Feedback indicates that the specified isort version 8.0.1 is invalid and should be corrected to a valid version like 6.0.0 to ensure compatibility and prevent installation failures.
| - id: flake8 | ||
| - repo: https://github.com/PyCQA/isort.git | ||
| rev: 8.0.0 | ||
| rev: 8.0.1 |
There was a problem hiding this comment.
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
No description provided.