From 40a5a69a539f60700f6a333a7d579ea2070f71c7 Mon Sep 17 00:00:00 2001 From: Martin Walters <104021577+waltersma@users.noreply.github.com> Date: Wed, 9 Jul 2025 13:02:48 +0100 Subject: [PATCH 01/12] Increase PR deployed docs --- .github/workflows/ci_cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 9e4a6c6c19..f5367e5c3e 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -145,7 +145,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} bot-user: ${{ secrets.PYANSYS_CI_BOT_USERNAME }} bot-email: ${{ secrets.PYANSYS_CI_BOT_EMAIL }} - maximum-pr-doc-deployments: 10 + maximum-pr-doc-deployments: 20 testing: name: Run Unit Tests From 4273b1a8b4d2bf7d9157c1c5ad130d7bbb12671c Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Wed, 9 Jul 2025 12:04:16 +0000 Subject: [PATCH 02/12] chore: adding changelog file 1093.miscellaneous.md [dependabot-skip] --- doc/changelog.d/1093.miscellaneous.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/changelog.d/1093.miscellaneous.md diff --git a/doc/changelog.d/1093.miscellaneous.md b/doc/changelog.d/1093.miscellaneous.md new file mode 100644 index 0000000000..e68ec4b40d --- /dev/null +++ b/doc/changelog.d/1093.miscellaneous.md @@ -0,0 +1 @@ +Increase pr deployed docs \ No newline at end of file From cc134743713be770182f1aaca5c8d75c76322794 Mon Sep 17 00:00:00 2001 From: Martin Walters <104021577+waltersma@users.noreply.github.com> Date: Wed, 9 Jul 2025 14:48:05 +0100 Subject: [PATCH 03/12] Update class.rst --- doc/source/_templates/autosummary/class.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/_templates/autosummary/class.rst b/doc/source/_templates/autosummary/class.rst index a6dd4f11b6..4edd31aa2f 100644 --- a/doc/source/_templates/autosummary/class.rst +++ b/doc/source/_templates/autosummary/class.rst @@ -20,7 +20,7 @@ :toctree: {% for item in filtered_methods %} -    {{ name }}.{{ item }} +    {% if item != '__init__' %}{{ name }}.{{ item }}{% endif %} {%- endfor %} {% endif %} {% endblock %} From 4c414c8c1b4a58fd54968489bffd5a048c40d7c9 Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Wed, 9 Jul 2025 13:49:52 +0000 Subject: [PATCH 04/12] chore: adding changelog file 1094.miscellaneous.md [dependabot-skip] --- doc/changelog.d/1094.miscellaneous.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/changelog.d/1094.miscellaneous.md diff --git a/doc/changelog.d/1094.miscellaneous.md b/doc/changelog.d/1094.miscellaneous.md new file mode 100644 index 0000000000..d10acbdb86 --- /dev/null +++ b/doc/changelog.d/1094.miscellaneous.md @@ -0,0 +1 @@ +Doc: fix docs issues \ No newline at end of file From 6ee098758e54737e5e6792b931ddd55c96a842c6 Mon Sep 17 00:00:00 2001 From: Martin Walters <104021577+waltersma@users.noreply.github.com> Date: Wed, 9 Jul 2025 17:14:16 +0100 Subject: [PATCH 05/12] Update class.rst --- doc/source/_templates/autosummary/class.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/source/_templates/autosummary/class.rst b/doc/source/_templates/autosummary/class.rst index 4edd31aa2f..79012f0c1f 100644 --- a/doc/source/_templates/autosummary/class.rst +++ b/doc/source/_templates/autosummary/class.rst @@ -4,7 +4,8 @@ {% set excluded_methods = ['__init__', 'bit_length', 'conjugate', 'from_bytes', 'to_bytes', 'bit_count', 'as_integer_ratio', 'is_integer'] %} -{% set filtered_methods = methods | reject('in', excluded_methods) | list %} +{% set all_excluded_present = (excluded_methods | reject('in', methods) | list | length == 0) %} +{% set filtered_methods = methods if all_excluded_present else [] %} {{ name | escape | underline}} From 641b3ee88db7ed61970a59dbcf23668989677c0e Mon Sep 17 00:00:00 2001 From: Martin Walters <104021577+waltersma@users.noreply.github.com> Date: Wed, 9 Jul 2025 17:48:52 +0100 Subject: [PATCH 06/12] Update class.rst --- doc/source/_templates/autosummary/class.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/_templates/autosummary/class.rst b/doc/source/_templates/autosummary/class.rst index 79012f0c1f..c4f495c851 100644 --- a/doc/source/_templates/autosummary/class.rst +++ b/doc/source/_templates/autosummary/class.rst @@ -5,7 +5,7 @@ {% set excluded_methods = ['__init__', 'bit_length', 'conjugate', 'from_bytes', 'to_bytes', 'bit_count', 'as_integer_ratio', 'is_integer'] %} {% set all_excluded_present = (excluded_methods | reject('in', methods) | list | length == 0) %} -{% set filtered_methods = methods if all_excluded_present else [] %} +{% set filtered_methods = [] if all_excluded_present else methods %} {{ name | escape | underline}} From ba6c27005e04810676c427a8e56dfdfdb173c5d2 Mon Sep 17 00:00:00 2001 From: Martin Walters <104021577+waltersma@users.noreply.github.com> Date: Wed, 9 Jul 2025 17:54:32 +0100 Subject: [PATCH 07/12] Update index.rst --- doc/source/api/index.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/source/api/index.rst b/doc/source/api/index.rst index 708ca74655..dab9460ccc 100644 --- a/doc/source/api/index.rst +++ b/doc/source/api/index.rst @@ -9,6 +9,7 @@ This section gives an overview of all API classes, methods, and parameters prese .. autosummary:: :toctree: _autosummary - ansys.meshing.prime - ansys.meshing.prime.examples - ansys.meshing.prime.lucid + ansys.meshing.prime + ansys.meshing.prime.lucid + ansys.meshing.prime.examples + ansys.meshing.prime.graphics From e6a3d60737043c9e165a412db2b21db1feb8b705 Mon Sep 17 00:00:00 2001 From: Martin Walters <104021577+waltersma@users.noreply.github.com> Date: Wed, 9 Jul 2025 21:16:23 +0100 Subject: [PATCH 08/12] Update index.rst --- doc/source/api/index.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/api/index.rst b/doc/source/api/index.rst index dab9460ccc..33d8239eb7 100644 --- a/doc/source/api/index.rst +++ b/doc/source/api/index.rst @@ -9,7 +9,7 @@ This section gives an overview of all API classes, methods, and parameters prese .. autosummary:: :toctree: _autosummary - ansys.meshing.prime - ansys.meshing.prime.lucid - ansys.meshing.prime.examples - ansys.meshing.prime.graphics + ansys.meshing.prime + ansys.meshing.prime.examples + ansys.meshing.prime.graphics + ansys.meshing.prime.lucid From ffe4c81e42c8e78dbcc637606e7e631b6025baf9 Mon Sep 17 00:00:00 2001 From: Martin Walters <104021577+waltersma@users.noreply.github.com> Date: Wed, 9 Jul 2025 23:44:16 +0100 Subject: [PATCH 09/12] Update class.rst --- doc/source/_templates/autosummary/class.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/_templates/autosummary/class.rst b/doc/source/_templates/autosummary/class.rst index c4f495c851..465bf7ae95 100644 --- a/doc/source/_templates/autosummary/class.rst +++ b/doc/source/_templates/autosummary/class.rst @@ -2,7 +2,7 @@ {% set excluded_attrs = ['real', 'imag', 'numerator', 'denominator'] %} -{% set excluded_methods = ['__init__', 'bit_length', 'conjugate', 'from_bytes', 'to_bytes', 'bit_count', 'as_integer_ratio', 'is_integer'] %} +{% set excluded_methods = ['bit_length', 'conjugate', 'from_bytes', 'to_bytes', 'bit_count', 'as_integer_ratio', 'is_integer'] %} {% set all_excluded_present = (excluded_methods | reject('in', methods) | list | length == 0) %} {% set filtered_methods = [] if all_excluded_present else methods %} From 6b9bff02d4e0986f716369eb79c56aa5b8b5be2d Mon Sep 17 00:00:00 2001 From: Martin Walters <104021577+waltersma@users.noreply.github.com> Date: Fri, 11 Jul 2025 09:52:31 +0100 Subject: [PATCH 10/12] Update class.rst --- doc/source/_templates/autosummary/class.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/_templates/autosummary/class.rst b/doc/source/_templates/autosummary/class.rst index 465bf7ae95..f000e5c77a 100644 --- a/doc/source/_templates/autosummary/class.rst +++ b/doc/source/_templates/autosummary/class.rst @@ -20,8 +20,8 @@ .. autosummary:: :toctree: - {% for item in filtered_methods %} -    {% if item != '__init__' %}{{ name }}.{{ item }}{% endif %} + {% for item in methods %} +    {% if item not in filtered_methods %}{{ name }}.{{ item }}{% endif %} {%- endfor %} {% endif %} {% endblock %} From 3c9528755d60fd2eb2b356c56e8f3345363b8d6c Mon Sep 17 00:00:00 2001 From: Martin Walters <104021577+waltersma@users.noreply.github.com> Date: Mon, 14 Jul 2025 11:43:50 +0100 Subject: [PATCH 11/12] Update class.rst --- doc/source/_templates/autosummary/class.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/_templates/autosummary/class.rst b/doc/source/_templates/autosummary/class.rst index 26e859e5a9..dfb06d3f8f 100644 --- a/doc/source/_templates/autosummary/class.rst +++ b/doc/source/_templates/autosummary/class.rst @@ -2,7 +2,7 @@ {% set excluded_attrs = ['real', 'imag', 'numerator', 'denominator'] %} -{% set excluded_methods = ['__init__', 'bit_length', 'conjugate', 'from_bytes', 'to_bytes', 'bit_count', 'as_integer_ratio', 'is_integer'] %} +{% set excluded_methods = ['bit_length', 'conjugate', 'from_bytes', 'to_bytes', 'bit_count', 'as_integer_ratio', 'is_integer'] %} {{ name | escape | underline}} @@ -30,7 +30,7 @@ .. autosummary:: :toctree: {% for item in attributes %} - {{ name }}.{{ item }} + {% if item not in excluded_attrs %}{{ name }}.{{ item }}{% endif %} {%- endfor %} {% endif %} {% endblock %} @@ -40,4 +40,4 @@ {{ fullname }} -.. vale on \ No newline at end of file +.. vale on From fa0eeba528db03db56c910e600f81d3d9c63d060 Mon Sep 17 00:00:00 2001 From: Martin Walters <104021577+waltersma@users.noreply.github.com> Date: Mon, 14 Jul 2025 16:44:30 +0100 Subject: [PATCH 12/12] Update class.rst --- doc/source/_templates/autosummary/class.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/_templates/autosummary/class.rst b/doc/source/_templates/autosummary/class.rst index dfb06d3f8f..2ad619df64 100644 --- a/doc/source/_templates/autosummary/class.rst +++ b/doc/source/_templates/autosummary/class.rst @@ -18,7 +18,7 @@ :toctree: {% for item in methods %} -    {% if item not in excluded_methods %}{{ name }}.{{ item }}{% endif %} +    {% if item != '__init__' %}{{ name }}.{{ item }}{% endif %} {%- endfor %} {% endif %} {% endblock %}