·
10 commits
to refs/heads/main
since this release
Changes
Big thank you to @AA-Turner for expanding the pyproject.toml parsing to also find the ruff version to use in the following scenarios:
[dependency-groups]
dev = [
{ include-group = "docs" },
{ include-group = "lint" },
]
docs = [
"sphinx",
]
lint = [
"ruff==0.8.3",
]
[project.optional-dependencies]
lint = [
"ruff==0.8.3",
]
π Enhancements
- Read the
[project.optional-dependencies]
and[dependency-groups]
tables @AA-Turner (#66)