From 222932f109373f3974aa381a8f31a020762a9699 Mon Sep 17 00:00:00 2001 From: Joshua Napoli Date: Wed, 10 Jun 2026 17:30:59 -0400 Subject: [PATCH 1/2] Use uv in toggle command docs The poetry->uv migration (36100c2, 225e5e2) switched the hooks and dependency management to uv but left the toggle slash-command docs referencing `poetry run python-claude toggle ...`. Update them to `uv run` so the project no longer references poetry anywhere. Co-Authored-By: Claude Opus 4.8 (1M context) --- .claude/commands/mypy.md | 2 +- .claude/commands/pytest.md | 2 +- .claude/commands/ruff.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.claude/commands/mypy.md b/.claude/commands/mypy.md index 436083e..85405b3 100644 --- a/.claude/commands/mypy.md +++ b/.claude/commands/mypy.md @@ -5,5 +5,5 @@ description: Toggle mypy quality check on/off Please toggle the mypy quality check: ```bash -poetry run python-claude toggle mypy +uv run python-claude toggle mypy ``` diff --git a/.claude/commands/pytest.md b/.claude/commands/pytest.md index b733b84..f90bf78 100644 --- a/.claude/commands/pytest.md +++ b/.claude/commands/pytest.md @@ -5,5 +5,5 @@ description: Toggle pytest quality check on/off Please toggle the pytest quality check: ```bash -poetry run python-claude toggle pytest +uv run python-claude toggle pytest ``` diff --git a/.claude/commands/ruff.md b/.claude/commands/ruff.md index abbb2f1..b15ac0c 100644 --- a/.claude/commands/ruff.md +++ b/.claude/commands/ruff.md @@ -5,5 +5,5 @@ description: Toggle ruff quality check on/off Please toggle the ruff quality check (includes both format and check): ```bash -poetry run python-claude toggle ruff +uv run python-claude toggle ruff ``` From be48186129559331d6ed99ad311e9de4d1fb5599 Mon Sep 17 00:00:00 2001 From: Joshua Napoli Date: Wed, 10 Jun 2026 17:33:22 -0400 Subject: [PATCH 2/2] Minor version bump --- pyproject.toml | 2 +- uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 446fde8..f3c7488 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-claude" -version = "0.4.1" +version = "0.5.0" description = "Python hooks for Claude Code" authors = [{name = "CVector", email = "support@cvector.com"}] readme = "README.md" diff --git a/uv.lock b/uv.lock index fc0597e..4cdb6bf 100644 --- a/uv.lock +++ b/uv.lock @@ -216,7 +216,7 @@ wheels = [ [[package]] name = "python-claude" -version = "0.4.1" +version = "0.5.0" source = { editable = "." } [package.dev-dependencies]