Skip to content
Merged
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
7 changes: 7 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# TODO

- [ ] Remove global pipx installs of ruff, pytest, mypy, and pre-commit
(`pipx uninstall ruff pytest mypy pre-commit`).
They shadow the project-local versions managed by uv and can cause version drift.
Run each tool via `uv run <tool>` (e.g. `uv run ruff`, `uv run pytest`,
`uv run mypy`, `uv run pre-commit`) instead.
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,8 @@ dependencies = [
"polars>=1.0.0",
]

# Note: Ubuntu distro version of `ruff`, `pytest`, `mypy` tend to be old.
# Rather install the latest version in `.local/bin/` with
# `pipx install ruff pytest mypy pre-commit`
#
# Dev tools (ruff, mypy, pytest, pre-commit) are managed by uv.
# Run with: uv run ruff check, uv run mypy, uv run pytest
[dependency-groups]
dev = [
"ruff>=0.11.12,<1.0.0",
Expand Down