From 0e2a9954df9649a9417f6742d1b99fd5ef008b4b Mon Sep 17 00:00:00 2001 From: Christoph Kuhnke Date: Mon, 9 Dec 2024 14:59:20 +0100 Subject: [PATCH] Fixed changelog and isort configuration (#238) * Fixed changelog and black configuration * Fixed list of versions in changelog Co-authored-by: Thomas Ubensee <34603111+tomuben@users.noreply.github.com> --- doc/changes/changelog.md | 18 +++++++++++++++--- pyproject.toml | 17 +++++++++++++++++ 2 files changed, 32 insertions(+), 3 deletions(-) diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index d20c0161..e53b2193 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -1,4 +1,16 @@ -# Changelog +# Changes -* [0.1.1](changes_0.1.1.md) -* [0.1.0](changes_0.1.0.md) \ No newline at end of file +* [unreleased](unreleased.md) +* [0.2.0](changes_0.2.0.md) +* [0.1.0](changes_0.1.0.md) + + +```{toctree} +--- +hidden: +--- +unreleased +changes_0.2.0 +changes_0.1.0 + +``` diff --git a/pyproject.toml b/pyproject.toml index 9af61693..44ce7601 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,3 +73,20 @@ ignore_errors = true [tool.pylint.master] fail-under = 6.0 + + + +[tool.black] +line-length = 88 +verbose = false +include = "\\.pyi?$" + + +[tool.isort] +profile = "black" +force_grid_wrap = 2 + + +[tool.pylint.format] +max-line-length = 88 +max-module-lines = 800