Skip to content
Open
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dev = [
test = [
"pytest==8.3.4",
"pytest-asyncio==0.23.8",
"pytest-cov==5.0.0",
"pytest-cov==7.0.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Python 3.8 incompatibility with pytest-cov 7.x

pytest-cov==7.0.0 requires Python >=3.9 (dropped Python 3.8 support in v6.0.0). This project declares requires-python = ">=3.8" and the CI matrix tests against Python 3.8 (ci.yml line 20), so this upgrade will break Python 3.8 test environments.

Additionally, the uv.lock file was not regenerated — it still references pytest-cov==5.0.0, meaning uv sync --locked will fail or install the old version.

Options:

  1. If Python 3.8 support is still needed, pin to pytest-cov==5.0.0 (last version supporting 3.8).
  2. If Python 3.8 can be dropped, update requires-python and the CI matrix first, then upgrade pytest-cov and regenerate the lockfile.

"six==1.17.0",
]
lint = ["ruff==0.14.5"]
Expand Down
Loading