diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 171d6e37..1ce7f95a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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 diff --git a/test/test_from_sdist.py b/test/test_from_sdist.py index c8a0d6a3..631c0381 100644 --- a/test/test_from_sdist.py +++ b/test/test_from_sdist.py @@ -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 diff --git a/test/test_pure_wheel.py b/test/test_pure_wheel.py index 998f967f..a7d3998a 100644 --- a/test/test_pure_wheel.py +++ b/test/test_pure_wheel.py @@ -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() diff --git a/test/test_same_wheel.py b/test/test_same_wheel.py index 51db2d88..95c7aa64 100644 --- a/test/test_same_wheel.py +++ b/test/test_same_wheel.py @@ -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()