Skip to content
Open
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
2 changes: 1 addition & 1 deletion .aider.conf.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lint-cmd:
- "python: scripts/lint.sh"
auto-lint: true
test-cmd: poetry run pytest
test-cmd: uv run pytest
auto-test: true
read:
- README.md
14 changes: 7 additions & 7 deletions .claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"hooks": [
{
"type": "command",
"command": "poetry run python-claude session start"
"command": "uv run python-claude session start"
},
{
"type": "command",
"command": "poetry run python-claude git status"
"command": "uv run python-claude git status"
}
]
}
Expand All @@ -19,19 +19,19 @@
"hooks": [
{
"type": "command",
"command": "poetry run python-claude ruff format"
"command": "uv run python-claude ruff format"
},
{
"type": "command",
"command": "poetry run python-claude ruff check"
"command": "uv run python-claude ruff check"
},
{
"type": "command",
"command": "poetry run python-claude mypy"
"command": "uv run python-claude mypy"
},
{
"type": "command",
"command": "poetry run python-claude pytest"
"command": "uv run python-claude pytest"
}
]
}
Expand All @@ -42,7 +42,7 @@
"hooks": [
{
"type": "command",
"command": "poetry run python-claude edited"
"command": "uv run python-claude edited"
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
pull_request:
paths:
- .github/workflows/ci.yml
- poetry.lock
- uv.lock
- pyproject.toml
- src/**
- tests/**
push:
paths:
- .github/workflows/ci.yml
- poetry.lock
- uv.lock
- pyproject.toml
- src/**
- tests/**
Expand Down
Loading