Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#115)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Oct 28, 2024
1 parent 8f32898 commit 9be66ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ repos:
- id: tox-ini-fmt
args: ["-p", "fix"]
- repo: https://github.com/tox-dev/pyproject-fmt
rev: "2.4.3"
rev: "v2.4.3"
hooks:
- id: pyproject-fmt
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.7.0"
rev: "v0.7.1"
hooks:
- id: ruff-format
- id: ruff
Expand Down
2 changes: 1 addition & 1 deletion src/tox_uv/_venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def create_python_env(self) -> None:
outcome = self.execute(cmd, stdin=StdinSource.OFF, run_id="venv", show=None)

if self.core["skip_missing_interpreters"] and outcome.exit_code == 1:
msg = "could not find python interpreter with spec(s):" f" {version_spec}"
msg = f"could not find python interpreter with spec(s): {version_spec}"
raise Skip(msg)

outcome.assert_success()
Expand Down
2 changes: 1 addition & 1 deletion src/tox_uv/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def tox_register_tox_env(register: ToxEnvRegister) -> None:


def tox_append_version_info() -> str:
return f'with uv=={version("uv")}'
return f"with uv=={version('uv')}"


__all__ = [
Expand Down

0 comments on commit 9be66ee

Please sign in to comment.