Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
repository-name: pyansys/pyfluent-visualization-docs
token: ${{ steps.get_workflow_token.outputs.token }}
token: ${{ secrets.DOC_DEPLOYMENT_PAT }}
BRANCH: gh-pages
FOLDER: doc/_build/html
CLEAN: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
repository-name: pyansys/pyfluent-visualization-dev-docs
token: ${{ steps.get_workflow_token.outputs.token }}
token: ${{ secrets.DOC_DEPLOYMENT_PAT }}
BRANCH: gh-pages
FOLDER: doc/_build/html
CLEAN: true
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.dev0"
version = "0.3.dev0"
description = "A python wrapper for ansys Fluent visualization"
license = "MIT"
authors = ["ANSYS, Inc. <ansys.support@ansys.com>"]
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/fluent/visualization/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
except ModuleNotFoundError:
import importlib_metadata

__version__ = importlib_metadata.version("ansys-fluent-visualization")
__version__ = importlib_metadata.version(__name__.replace(".", "-"))

required_libraries = {
"vtk": "9.1.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_pkg_version():
assert __version__ == "0.2.dev0"
assert __version__ == "0.3.dev0"