From 0b9b1bee91423df217af34e01c65b115b9cf1d64 Mon Sep 17 00:00:00 2001 From: moe-ad Date: Thu, 21 Nov 2024 10:55:03 +0100 Subject: [PATCH 1/4] fix: updated required ansys-sphinx-theme version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 58f3d3f6b..ff8031924 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ tests = [ ] doc = [ - "ansys-sphinx-theme==1.0.7", + "ansys-sphinx-theme==1.2.1", "autodoc_pydantic==2.1.0", "jupyter_sphinx==0.5.3", "nbsphinx==0.9.5", From b0d9c01fd5a7f82bc719789cb0a22f0fd57b1b7c Mon Sep 17 00:00:00 2001 From: Federico Negri Date: Mon, 25 Nov 2024 07:45:59 +0100 Subject: [PATCH 2/4] try to fix test and doc style failures --- .github/workflows/ci_cd.yml | 6 +++--- .github/workflows/nightly.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index c3deb89a4..cbd61c96a 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -4,11 +4,11 @@ on: inputs: hps-version: description: HPS version to test against - default: 'latest-dev' + default: 'v1.1.0' type: choice options: - 'v1.0.2' - - 'v1.0.3' + - 'v1.1.0' - 'latest-dev' pull_request: @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest steps: - name: PyAnsys documentation style checks - uses: ansys/actions/doc-style@v7 + uses: ansys/actions/doc-style@v8 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 78e40275a..c40b80049 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -4,11 +4,11 @@ on: inputs: hps-version: description: HPS version to test against - default: 'latest-dev' + default: 'v1.1.0' type: choice options: - 'v1.0.2' - - 'v1.0.3' + - 'v1.1.0' - 'latest-dev' schedule: @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-latest steps: - name: PyAnsys documentation style checks - uses: ansys/actions/doc-style@v7 + uses: ansys/actions/doc-style@v8 with: token: ${{ secrets.GITHUB_TOKEN }} From 6fb3238eb48ae962b315d2e3779d2f6d41e2cf50 Mon Sep 17 00:00:00 2001 From: Federico Negri Date: Mon, 25 Nov 2024 07:59:41 +0100 Subject: [PATCH 3/4] use v1.1.0 for tests --- .github/workflows/ci_cd.yml | 2 +- .github/workflows/nightly.yml | 2 +- .github/workflows/tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index cbd61c96a..a5319da0d 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -56,7 +56,7 @@ jobs: python-version: ${{ matrix.cfg.python-version }} toxenv: ${{ matrix.cfg.toxenv }} runner: ${{ matrix.os }} - hps-version: ${{ inputs.hps-version || 'latest-dev' }} + hps-version: ${{ inputs.hps-version || 'v1.1.0' }} docs: name: Documentation diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index c40b80049..d3c5e2867 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -65,7 +65,7 @@ jobs: python-version: ${{ matrix.cfg.python-version }} toxenv: ${{ matrix.cfg.toxenv }} runner: ${{ matrix.os }} - hps-version: ${{ inputs.hps-version || 'latest-dev' }} + hps-version: ${{ inputs.hps-version || 'v1.1.0' }} smoke-tests: name: Build and Smoke tests diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cc7cc3b5b..2844cfe78 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ on: hps-version: description: HPS version to test against type: string - default: 'latest-dev' + default: 'v1.1.0' jobs: From 4e54705f9287782f6e7e7bf129769769231890f9 Mon Sep 17 00:00:00 2001 From: Federico Negri Date: Mon, 25 Nov 2024 08:08:06 +0100 Subject: [PATCH 4/4] Bump version 0.9.1 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ff8031924..318b63985 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" [project] # Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections name = "ansys-hps-client" -version = "0.9.0" +version = "0.9.1" description = "A python client for Ansys HPC Platform Services" readme = "README.rst" requires-python = ">=3.9,<4.0"