From e0e1bc5e89fcf46d503e9631116b0f8b6fc9312d Mon Sep 17 00:00:00 2001 From: dkunhamb Date: Wed, 21 Feb 2024 13:00:24 +0530 Subject: [PATCH 1/6] update vale version 3.1.0 --- .github/workflows/ci_cd.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index f630d857a..d940805e9 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -55,6 +55,7 @@ jobs: uses: ansys/actions/doc-style@v5 with: token: ${{ secrets.GITHUB_TOKEN }} + vale-version: "3.1.0" smoke-tests: name: Build and Smoke tests From d244e2c250c95a675466e2864082dbd76427c969 Mon Sep 17 00:00:00 2001 From: dkunhamb Date: Wed, 21 Feb 2024 13:03:09 +0530 Subject: [PATCH 2/6] update changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe8f02172..87bc0ed0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,8 @@ This document follows the conventions laid out in [Keep a CHANGELOG](https://kee - Add logo for dark theme ([#601](https://github.com/ansys/pymechanical/pull/601)) ### Changed - - Update ``pre-commit`` ([#610](https://github.com/ansys/pymechanical/pull/610)) +- Update ``pre-commit`` ([#610](https://github.com/ansys/pymechanical/pull/610)) +- Update vale version to 3.1.0 ([#613](https://github.com/ansys/pymechanical/pull/613)) ### Dependencies - Bump `plotly` from 5.18.0 to 5.19.0 ([#605](https://github.com/ansys/pymechanical/pull/605)) From 9b9af7d3f5baf3f390debd4dfc698de66edd0d81 Mon Sep 17 00:00:00 2001 From: dkunhamb Date: Wed, 21 Feb 2024 13:09:09 +0530 Subject: [PATCH 3/6] update vocab path --- doc/styles/Vocab/ANSYS/accept.txt | 46 ------------------------------- doc/styles/Vocab/ANSYS/reject.txt | 0 2 files changed, 46 deletions(-) delete mode 100644 doc/styles/Vocab/ANSYS/accept.txt delete mode 100644 doc/styles/Vocab/ANSYS/reject.txt diff --git a/doc/styles/Vocab/ANSYS/accept.txt b/doc/styles/Vocab/ANSYS/accept.txt deleted file mode 100644 index a35cd8bd8..000000000 --- a/doc/styles/Vocab/ANSYS/accept.txt +++ /dev/null @@ -1,46 +0,0 @@ -ANSYS -Ansys -ansys -automations -Apptainer -CentOS -CentOS7 -Docker -docker -ethernet -ethernet's -generateHosts -hostname -Hostname -Mechanical -mechanical -OptiSLang -PyAnsys -pyansys -PyMechanical -Pythonically -Python.NET -pythonnet -venv -Windows -windows -WSL -wsl -stdout -CPython -namespaces -Globals -linux -Linux -APIs -multiphysics -discretized -CPUs -enum -config -pessimizations -mutexes -Addin -Addins -isort -Codecov \ No newline at end of file diff --git a/doc/styles/Vocab/ANSYS/reject.txt b/doc/styles/Vocab/ANSYS/reject.txt deleted file mode 100644 index e69de29bb..000000000 From 545904c1567248fc01245e91067beb9fa6d00c00 Mon Sep 17 00:00:00 2001 From: dkunhamb Date: Wed, 21 Feb 2024 13:15:53 +0530 Subject: [PATCH 4/6] update vocab gitignore --- doc/styles/.gitignore | 4 +- .../config/vocabularies/ANSYS/accept.txt | 46 +++++++++++++++++++ .../config/vocabularies/ANSYS/reject.txt | 0 3 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 doc/styles/config/vocabularies/ANSYS/accept.txt create mode 100644 doc/styles/config/vocabularies/ANSYS/reject.txt diff --git a/doc/styles/.gitignore b/doc/styles/.gitignore index 080f12aa4..62d72f2c2 100644 --- a/doc/styles/.gitignore +++ b/doc/styles/.gitignore @@ -1,4 +1,4 @@ * -!Vocab -!Vocab/** +!config +!config/** !.gitignore \ No newline at end of file diff --git a/doc/styles/config/vocabularies/ANSYS/accept.txt b/doc/styles/config/vocabularies/ANSYS/accept.txt new file mode 100644 index 000000000..a35cd8bd8 --- /dev/null +++ b/doc/styles/config/vocabularies/ANSYS/accept.txt @@ -0,0 +1,46 @@ +ANSYS +Ansys +ansys +automations +Apptainer +CentOS +CentOS7 +Docker +docker +ethernet +ethernet's +generateHosts +hostname +Hostname +Mechanical +mechanical +OptiSLang +PyAnsys +pyansys +PyMechanical +Pythonically +Python.NET +pythonnet +venv +Windows +windows +WSL +wsl +stdout +CPython +namespaces +Globals +linux +Linux +APIs +multiphysics +discretized +CPUs +enum +config +pessimizations +mutexes +Addin +Addins +isort +Codecov \ No newline at end of file diff --git a/doc/styles/config/vocabularies/ANSYS/reject.txt b/doc/styles/config/vocabularies/ANSYS/reject.txt new file mode 100644 index 000000000..e69de29bb From 39ec9e9b12a52572a456b3b5039ce317d7c2247a Mon Sep 17 00:00:00 2001 From: dkunhamb Date: Wed, 21 Feb 2024 13:26:05 +0530 Subject: [PATCH 5/6] update vale terms --- doc/.vale.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/.vale.ini b/doc/.vale.ini index 8a6c41b8d..dde25999e 100644 --- a/doc/.vale.ini +++ b/doc/.vale.ini @@ -25,6 +25,7 @@ Vocab = ANSYS # Apply the following styles [*.{rst}] BasedOnStyles = Vale, Google +Vale.Terms = NO # By default, `class` and `func` are ignored TokenIgnores = (:class:`.*`|:func:`.*`) From e5f50b795f53a11547f1f1b85407af5f4e8b091e Mon Sep 17 00:00:00 2001 From: Dipin <26918585+dipinknair@users.noreply.github.com> Date: Wed, 21 Feb 2024 13:44:34 +0530 Subject: [PATCH 6/6] Update doc/styles/.gitignore Co-authored-by: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> --- doc/styles/.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/styles/.gitignore b/doc/styles/.gitignore index 62d72f2c2..f98a973cd 100644 --- a/doc/styles/.gitignore +++ b/doc/styles/.gitignore @@ -1,4 +1,4 @@ * -!config -!config/** +!vocabularies +!vocabularies/** !.gitignore \ No newline at end of file