[pre-commit.ci] pre-commit autoupdate (#1840)

* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/astral-sh/ruff-pre-commit: v0.4.4 → v0.4.5](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.4...v0.4.5)
- [github.com/codespell-project/codespell: v2.2.6 → v2.3.0](https://github.com/codespell-project/codespell/compare/v2.2.6...v2.3.0)
- [github.com/python-jsonschema/check-jsonschema: 0.28.3 → 0.28.4](https://github.com/python-jsonschema/check-jsonschema/compare/0.28.3...0.28.4)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
pre-commit-ci[bot]
2024-05-27 22:34:22 -04:00
committed by GitHub
co-authored by pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
parent 2e6b11e10c
commit 687406f664
4 changed files with 8 additions and 5 deletions
+3 -3
View File
@@ -14,7 +14,7 @@ repos:
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.4
rev: v0.4.5
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]
@@ -68,7 +68,7 @@ repos:
files: ^docs/changelog.md$
- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.3.0
hooks:
- id: codespell
args: ["-L", "sur", "-w"]
@@ -76,7 +76,7 @@ repos:
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.28.3
rev: 0.28.4
hooks:
- id: check-dependabot
- id: check-github-actions
+1
View File
@@ -6,6 +6,7 @@ import sys
import textwrap
from pathlib import Path
from tempfile import TemporaryDirectory
from test.test_projects.base import TestProject
from . import test_projects, utils
+2 -1
View File
@@ -1,10 +1,11 @@
from __future__ import annotations
import subprocess
from test import test_projects
import pytest
from test import test_projects
from . import utils
pure_python_project = test_projects.TestProject()
+2 -1
View File
@@ -1,10 +1,11 @@
from __future__ import annotations
import subprocess
from test import test_projects
import pytest
from test import test_projects
from . import utils
basic_project = test_projects.new_c_project()