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 @@ -28,7 +28,7 @@ dev = [
{ include-group = "nox" },
]
test = [
"pytest==8.3.4",
"pytest==9.0.2",
Copy link
Contributor

Choose a reason for hiding this comment

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

pytest 9.x dropped Python 3.8 support, but this project requires Python >=3.8 (line 8) and CI tests Python 3.8 (.github/workflows/ci.yml:20). This will break Python 3.8 builds.

According to the pytest 9.0.0 release notes: "We dropped support for Python 3.8 following its end of life (2024-10-07)."

Either:

  1. Keep pytest==8.3.4 (or update to latest 8.x series)
  2. Update requires-python to >=3.9 and remove Python 3.8 from CI matrix

"pytest-asyncio==0.23.8",
"pytest-cov==5.0.0",
"six==1.17.0",
Expand Down
Loading