diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index c3deb89a4..a5319da0d 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 78e40275a..d3c5e2867 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 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: diff --git a/pyproject.toml b/pyproject.toml index 58f3d3f6b..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" @@ -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",