Skip to content

Commit 8bea3fa

Browse files
release: bump version 1.3.2
1 parent 213e54b commit 8bea3fa

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

doc/changelog.d/630.miscellaneous.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fix: typo in autoapi template

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
55
[project]
66
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
77
name = "ansys-sphinx-theme"
8-
version = "1.3.1"
8+
version = "1.3.2"
99
description = "A theme devised by ANSYS, Inc. for Sphinx documentation."
1010
readme = "README.rst"
1111
requires-python = ">=3.10,<4"

src/ansys_sphinx_theme/theme/ansys_sphinx_theme/_templates/autoapi/python/class.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919

2020
{# ----------------- Start macros definition for autosummary -----------------#}
2121

22-
{% macro render_autosummary_section(title, members) -%}
22+
{% macro autosummary_section(title, members) -%}
2323

2424
{{ title }}
2525
{{ "-" * title | length }}
2626

2727
.. autoapisummary::
2828

29-
{% for member in members %}
29+
{% for member in members %}
3030
{{ member.id }}
31-
{% endfor %}
31+
{% endfor %}
3232

3333
{%- endmacro %}
3434
{# ------------------ End macros definition for autosummary --------------- #}

0 commit comments

Comments
 (0)