From fdb3b2f54e587527bf2e15ac4f6438f80da1f4af Mon Sep 17 00:00:00 2001 From: Muhammed Adedigba <68085496+moe-ad@users.noreply.github.com> Date: Mon, 25 Nov 2024 08:32:33 +0100 Subject: [PATCH] fix: updated required ansys-sphinx-theme version, bump version 0.9.1 (#497) Co-authored-by: Federico Negri --- .github/workflows/ci_cd.yml | 8 ++++---- .github/workflows/nightly.yml | 8 ++++---- .github/workflows/tests.yml | 2 +- pyproject.toml | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index c3deb89a..a5319da0 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 }} @@ -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 78e40275..d3c5e286 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 }} @@ -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 cc7cc3b5..2844cfe7 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: diff --git a/pyproject.toml b/pyproject.toml index 58f3d3f6..318b6398 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" @@ -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",