From 5fe273b0a69720be091850cce24902c385ba0cbc Mon Sep 17 00:00:00 2001 From: Prithwish Mukherjee Date: Fri, 21 Jun 2024 12:29:22 +0530 Subject: [PATCH 1/6] build: Bump version to v0.11.dev0 --- pyproject.toml | 5 ++--- tests/test_metadata.py | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fa072a17..7cee3c2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] # Check https://python-poetry.org/docs/pyproject/ for all available sections name = "ansys-fluent-visualization" -version = "0.10.dev0" +version = "0.11.dev0" description = "A python wrapper for ansys Fluent visualization" license = "MIT" authors = ["ANSYS, Inc. "] @@ -25,11 +25,10 @@ packages = [ [tool.poetry.dependencies] python = ">=3.9,<4.0" importlib-metadata = {version = "^4.0", python = "<3.9"} -ansys-fluent-core = "~=0.21.dev1" +ansys-fluent-core = "~=0.22.dev0" vtk = ">=9.3.0.rc0" pyvista = ">=0.39.0" pyvistaqt = ">=0.7.0" -pyside6 = ">=6.2.3" matplotlib = ">=3.5.1" requests = "==2.31.0" diff --git a/tests/test_metadata.py b/tests/test_metadata.py index 4aea85c9..239d8b47 100644 --- a/tests/test_metadata.py +++ b/tests/test_metadata.py @@ -2,4 +2,4 @@ def test_pkg_version(): - assert __version__ == "0.10.dev0" + assert __version__ == "0.11.dev0" From d8f3058ab37946a39f2e8c3c2ba2c30d0d9fb2af Mon Sep 17 00:00:00 2001 From: Prithwish Mukherjee Date: Thu, 17 Oct 2024 11:27:26 +0530 Subject: [PATCH 2/6] ci: Update doc style. --- .github/workflows/ci_cd.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 841d5b80..65b41dba 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -34,16 +34,11 @@ jobs: - uses: actions/checkout@v4 - name: Running Vale - uses: errata-ai/vale-action@reviewdog - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + uses: actions/doc-style@v8 with: + token: ${{ secrets.GITHUB_TOKEN }} files: doc - reporter: github-pr-check - level: error - filter_mode: nofilter - fail_on_error: true - vale_flags: "--config=doc/.vale.ini" + vale-config: doc/.vale.ini tests: name: Tests and coverage From a205592424e97c9385c0f83a13991c4885fea876 Mon Sep 17 00:00:00 2001 From: Prithwish Mukherjee Date: Thu, 17 Oct 2024 11:30:16 +0530 Subject: [PATCH 3/6] Update fix. --- .github/workflows/ci_cd.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 65b41dba..f146edd8 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -32,9 +32,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Running Vale - uses: actions/doc-style@v8 + uses: ansys/actions/doc-style@v8 with: token: ${{ secrets.GITHUB_TOKEN }} files: doc From 71895ac1b376ed674e1eb500b74721d4d4dc847c Mon Sep 17 00:00:00 2001 From: Prithwish Mukherjee <109645853+prmukherj@users.noreply.github.com> Date: Thu, 17 Oct 2024 12:44:47 +0530 Subject: [PATCH 4/6] Update .github/workflows/ci_cd.yml Co-authored-by: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> --- .github/workflows/ci_cd.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index f146edd8..39197abc 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -31,7 +31,6 @@ jobs: name: Documentation Style Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - name: Running Vale uses: ansys/actions/doc-style@v8 with: From 9a15e191127cd3de39ff48da29a71c62fd78a3fb Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Thu, 17 Oct 2024 09:17:48 +0200 Subject: [PATCH 5/6] fix: not needed args --- .github/workflows/ci_cd.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 39197abc..069e57de 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -35,8 +35,6 @@ jobs: uses: ansys/actions/doc-style@v8 with: token: ${{ secrets.GITHUB_TOKEN }} - files: doc - vale-config: doc/.vale.ini tests: name: Tests and coverage From e50ee2a324254c5552f783886616e5f2df03721f Mon Sep 17 00:00:00 2001 From: Prithwish Mukherjee Date: Thu, 17 Oct 2024 12:48:20 +0530 Subject: [PATCH 6/6] Updates. --- .github/workflows/ci_cd.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index f146edd8..05b068a3 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -36,8 +36,6 @@ jobs: uses: ansys/actions/doc-style@v8 with: token: ${{ secrets.GITHUB_TOKEN }} - files: doc - vale-config: doc/.vale.ini tests: name: Tests and coverage