Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions docs/pages/guides/style.md
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ pre-commit config will work:

```yaml
- repo: https://github.com/PyCQA/isort
rev: "6.1.0"
rev: "7.0.0"
hooks:
- id: isort
```
Expand All @@ -489,7 +489,7 @@ when clearly better (please always use them, they are faster) if you set

```yaml
- repo: https://github.com/asottile/pyupgrade
rev: "v3.20.0"
rev: "v3.21.0"
hooks:
- id: pyupgrade
args: ["--py39-plus"]
Expand Down Expand Up @@ -645,7 +645,7 @@ important parts (like Python classifiers) are in sync. This tool,

```yaml
- repo: https://github.com/asottile/setup-cfg-fmt
rev: "v2.8.0"
rev: "v3.1.0"
hooks:
- id: setup-cfg-fmt
args: [--include-version-classifiers, --max-py-version=3.12]
Expand Down Expand Up @@ -821,7 +821,7 @@ schemas, and you can load them via URL. It work on JSON, YAML, and TOML.

```yaml
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: "0.34.0"
rev: "0.34.1"
hooks:
- id: check-dependabot
- id: check-github-workflows
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ repos:
additional_dependencies: ["validate-pyproject-schema-store[all]"]

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: "0.34.0"
rev: "0.34.1"
hooks:
{%- if cookiecutter.__ci == "github" %}
- id: check-dependabot
Expand Down
Loading