diff --git a/.github/workflows/doc-build-release.yml b/.github/workflows/doc-build-release.yml index 45e03d61c51..1cb222bf808 100644 --- a/.github/workflows/doc-build-release.yml +++ b/.github/workflows/doc-build-release.yml @@ -55,10 +55,18 @@ jobs: env: FLUENT_IMAGE_TAG: ${{ env.DOC_DEPLOYMENT_IMAGE_TAG }} + - name: Install again after codegen + run: | + rm -rf dist + make install > /dev/null + - name: Build All Documentation run: | pip install -r requirements/requirements_build.txt - poetry install --only docs + if [ -f poetry.lock ] ; then + rm poetry.lock + fi + poetry install --with docs make build-all-docs env: FLUENT_IMAGE_TAG: ${{ env.DOC_DEPLOYMENT_IMAGE_TAG }} diff --git a/pyproject.toml b/pyproject.toml index a175d84f6c6..2654c969e2a 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-core" -version = "0.22.dev0" +version = "0.22.0" description = "PyFluent provides Pythonic access to Ansys Fluent" license = "MIT" authors = ["ANSYS, Inc. "] diff --git a/src/ansys/fluent/core/_version.py b/src/ansys/fluent/core/_version.py index 7f282e8d084..87eec2584c9 100644 --- a/src/ansys/fluent/core/_version.py +++ b/src/ansys/fluent/core/_version.py @@ -6,7 +6,7 @@ """ # major, minor, patch -version_info = 0, 22, "dev0" +version_info = 0, 22, 0 # Nice string for the version __version__ = ".".join(map(str, version_info))