Skip to content

Commit

Permalink
version bump to 0.3.dev0 (#31)
Browse files Browse the repository at this point in the history
* version bump to 0.3.dev0

* Use PAT for doc deployment
  • Loading branch information
mkundu1 authored Jun 22, 2022
1 parent 065b2db commit 17d8a37
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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/[email protected]
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/[email protected]
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. <[email protected]>"]
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"

0 comments on commit 17d8a37

Please sign in to comment.