Update cookiecutter template#141
Merged
Zeitsperre merged 7 commits intomainfrom Apr 22, 2026
Merged
Conversation
updates: - [github.com/asottile/pyupgrade: v3.20.0 → v3.21.2](asottile/pyupgrade@v3.20.0...v3.21.2) - [github.com/pappasam/toml-sort: v0.24.3 → v0.24.4](pappasam/toml-sort@v0.24.3...v0.24.4) - [github.com/adrienverge/yamllint.git: v1.37.1 → v1.38.0](https://github.com/adrienverge/yamllint.git/compare/v1.37.1...v1.38.0) - [github.com/astral-sh/ruff-pre-commit: v0.13.3 → v0.15.9](astral-sh/ruff-pre-commit@v0.13.3...v0.15.9) - [github.com/jendrikseipp/vulture: v2.14 → v2.16](jendrikseipp/vulture@v2.14...v2.16) - [github.com/codespell-project/codespell: v2.4.1 → v2.4.2](codespell-project/codespell@v2.4.1...v2.4.2) - [github.com/python-jsonschema/check-jsonschema: 0.34.0 → 0.37.1](python-jsonschema/check-jsonschema@0.34.0...0.37.1) - [github.com/woodruffw/zizmor-pre-commit: v1.14.2 → v1.23.1](zizmorcore/zizmor-pre-commit@v1.14.2...v1.23.1) - [github.com/gitleaks/gitleaks: v8.28.0 → v8.30.0](gitleaks/gitleaks@v8.28.0...v8.30.0)
aulemahal
approved these changes
Apr 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist:
What kind of change does this PR introduce?
optional-dependenciestodependency-groupsautomationenvironmentpre-commithas been replaced byprekMakefilenow handles some dependency installation logictoxnow uses the new TOML spec for configurationsDoes this PR introduce a breaking change?
Yes.
Makefilecommands or the new command invocation.toxhas been undergoing significant overhaul to its configuration language. It now implements most features from theiniformat in thetomlspec. There are likely some neat new goodies that we can make use of for specialized testing.Other information:
dependency-groupsare a way to ensure that development-time dependencies are not published with distributions of packages, which is great for packages that do not bundle code, or for preventing end-users from installing tools they will never require when using the package.Example invocation:
A dependency-group is only available when examining the source code of the library and allows developers to only install the dependencies without needing to install the library itself (great for linting). It also supports installing the library or nesting of other dependency-groups/optional-dependencies, if desired. Testing and other miscellaneous development libraries are also suggested to be listed under dependency-groups.
https://peps.python.org/pep-0735/