From fed8fa76006cfbdcfec393697b8bcaf8729a40ce Mon Sep 17 00:00:00 2001 From: Mainak Kundu Date: Mon, 5 Sep 2022 10:20:20 +0530 Subject: [PATCH] Bump version 0.6.dev0 --- .github/workflows/ci_cd.yml | 4 +++- pyproject.toml | 4 ++-- tests/test_metadata.py | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 92a714cc..30d6e2d9 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -85,6 +85,7 @@ jobs: docs: name: Documentation + needs: docs-style runs-on: [self-hosted, pyfluent] strategy: matrix: @@ -168,6 +169,7 @@ jobs: build: name: Build library + needs: [style, tests, docs] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -195,8 +197,8 @@ jobs: release: name: Release - if: github.event_name == 'push' && contains(github.ref, 'refs/tags') needs: build + if: github.event_name == 'push' && contains(github.ref, 'refs/tags') runs-on: ubuntu-latest steps: - name: Set up Python diff --git a/pyproject.toml b/pyproject.toml index 5ca2dc3a..72832846 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.5.dev0" +version = "0.6.dev0" description = "A python wrapper for ansys Fluent visualization" license = "MIT" authors = ["ANSYS, Inc. "] @@ -25,7 +25,7 @@ packages = [ [tool.poetry.dependencies] python = ">=3.7,<4.0" importlib-metadata = {version = "^4.0", python = "<3.8"} -ansys-fluent-core = "~=0.11.dev0" +ansys-fluent-core = "~=0.12.dev0" vtk = {version = ">=9.0.3", python = "<=3.9"} ipyvtklink = ">=0.2.2" pyvista = ">=0.33.2" diff --git a/tests/test_metadata.py b/tests/test_metadata.py index 7910c8f8..8bfffd13 100644 --- a/tests/test_metadata.py +++ b/tests/test_metadata.py @@ -2,4 +2,4 @@ def test_pkg_version(): - assert __version__ == "0.5.dev0" + assert __version__ == "0.6.dev0"