From 6724974f21943ea980e88c4f0b7319ef6493d7a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Mart=C3=ADnez?= <28702884+jorgepiloto@users.noreply.github.com> Date: Thu, 6 Mar 2025 09:35:09 +0100 Subject: [PATCH 1/2] fix: remove flake8 configuration file --- .flake8 | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 .flake8 diff --git a/.flake8 b/.flake8 deleted file mode 100644 index ccdd74977..000000000 --- a/.flake8 +++ /dev/null @@ -1,7 +0,0 @@ -[flake8] -exclude = _build -select = W191, W291, W293, W391, E115, E117, E122, E124, E125, E225, E231, E301, E303, E501, F401, F403 -count = True -max-complexity = 10 -max-line-length = 100 -statistics = True \ No newline at end of file From 164d9c8d2b40dd06ba1a4f214e257bc8e88afc4a Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Thu, 6 Mar 2025 08:37:05 +0000 Subject: [PATCH 2/2] chore: adding changelog file 641.miscellaneous.md [dependabot-skip] --- doc/changelog.d/641.miscellaneous.md | 1 + doc/changelog.d/changelog_template.jinja | 39 +++++++++++++----------- 2 files changed, 23 insertions(+), 17 deletions(-) create mode 100644 doc/changelog.d/641.miscellaneous.md diff --git a/doc/changelog.d/641.miscellaneous.md b/doc/changelog.d/641.miscellaneous.md new file mode 100644 index 000000000..abb1ca3bd --- /dev/null +++ b/doc/changelog.d/641.miscellaneous.md @@ -0,0 +1 @@ +fix: remove flake8 configuration file \ No newline at end of file diff --git a/doc/changelog.d/changelog_template.jinja b/doc/changelog.d/changelog_template.jinja index 0e90e56c3..3ca0146b8 100644 --- a/doc/changelog.d/changelog_template.jinja +++ b/doc/changelog.d/changelog_template.jinja @@ -1,17 +1,22 @@ -{% if sections[""] %} -{% for category, val in definitions.items() if category in sections[""] %} - -{{ definitions[category]['name'] }} -{% set underline = '^' * definitions[category]['name']|length %} -{{ underline }} - -{% for text, values in sections[""][category].items() %} -- {{ text }} {{ values|join(', ') }} -{% endfor %} - -{% endfor %} -{% else %} -No significant changes. - - -{% endif %} +{% if sections[""] %} + +.. tab-set:: + +{%+ for category, val in definitions.items() if category in sections[""] %} + + .. tab-item:: {{ definitions[category]['name'] }} + + .. list-table:: + :header-rows: 0 + :widths: auto + +{% for text, values in sections[""][category].items() %} + * - {{ text }} + - {{ values|join(', ') }} + +{% endfor %} +{% endfor %} + +{% else %} +No significant changes. +{% endif %}