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
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ trio = ["trio >= 0.32.0"]
pytest11 = {anyio = "anyio.pytest_plugin"}

[dependency-groups]
dev = [
"trio>=0.32.0",
"tox >= 4.22",
"pre-commit>=4.6.0",
{include-group = "test"},
{include-group = "doc"},
Comment on lines +50 to +54

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

It's mainly including test (and to some degree trio) here that has the most benefit here.

To be able to use uv run -p 3.11 pytest ... for example to quickly check in different version without needing to add --group test --extra trio as well on every invocation.

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

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

You can already do that with tox -e py311.

]
test = [
"blockbuster >= 1.5.23; python_version < '3.15'",
"coverage[toml] >= 7",
Expand Down