Skip to content
Closed
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
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@ exclude: (.*\.patch)

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 7.0.0

Choose a reason for hiding this comment

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

critical

The specified version 7.0.0 for isort does not appear to be a valid release. The latest stable version is 5.13.2. Using a non-existent version will cause pre-commit to fail. Please update this to a valid, existing version.

    rev: 5.13.2

hooks:
- id: isort
name: isort (python)
- repo: https://github.com/pycqa/autoflake
rev: v2.0.1
rev: v2.3.1
hooks:
- id: autoflake
args: [--remove-unused-variables]
- repo: https://github.com/psf/black
rev: 23.1.0
rev: 25.12.0

Choose a reason for hiding this comment

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

critical

The specified version 25.12.0 for black is invalid. black uses a calendar-based versioning scheme (YY.MM.MICRO), and this version points to a future date in 2025 and does not exist. The latest stable version is 24.4.2. Using a non-existent version will cause pre-commit to fail. Please update this to a valid, existing version.

    rev: 24.4.2

hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 7.3.0

Choose a reason for hiding this comment

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

critical

The specified version 7.3.0 for flake8 does not appear to be a valid released version. The latest stable version is 7.1.0. Using a non-existent version will cause pre-commit to fail. Please update this to a valid, existing version.

    rev: 7.1.0

hooks:
- id: flake8
exclude: ^bazel-
Expand All @@ -32,11 +32,11 @@ repos:
hooks:
- id: pydocstyle
- repo: https://github.com/keith/pre-commit-buildifier
rev: 6.0.0
rev: 8.2.1
hooks:
- id: buildifier
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v15.0.7
rev: v21.1.8

Choose a reason for hiding this comment

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

critical

The specified version v21.1.8 for mirrors-clang-format is invalid. clang-format versions are tied to LLVM releases, and LLVM 21 does not exist. The latest version available in this mirror appears to be v18.1.8. Using an invalid version will cause pre-commit to fail. Please update this to a valid, existing version.

    rev: v18.1.8

hooks:
- id: clang-format
"types_or": [c++, c, cuda]
Loading