Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(pre-commit): raise minimum_pre_commit_version (#4065) #4067

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-hooks.yaml
Expand Up @@ -6,7 +6,7 @@
entry: black
stages: [pre-commit, pre-merge-commit, pre-push, manual]
language: python
minimum_pre_commit_version: 2.9.2
minimum_pre_commit_version: 3.2.0
require_serial: true
types_or: [python, pyi]
- id: black-jupyter
Expand All @@ -16,7 +16,7 @@
entry: black
stages: [pre-commit, pre-merge-commit, pre-push, manual]
language: python
minimum_pre_commit_version: 2.9.2
minimum_pre_commit_version: 3.2.0
require_serial: true
types_or: [python, pyi, jupyter]
additional_dependencies: [".[jupyter]"]
2 changes: 2 additions & 0 deletions CHANGES.md
Expand Up @@ -49,6 +49,8 @@
- Enable 3.12 CI (#4035)
- Build docker images in parallel (#4054)
- Build docker images with 3.12 (#4055)
- Raise the `minimum_pre_commit_version` for the changes to Black's pre-commit
integration introduced in 23.11.0 (#4067)

### Documentation

Expand Down