Skip to content

Commit 17d8a37

Browse files
authored
version bump to 0.3.dev0 (#31)
* version bump to 0.3.dev0 * Use PAT for doc deployment
1 parent 065b2db commit 17d8a37

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci_cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
uses: JamesIves/[email protected]
143143
with:
144144
repository-name: pyansys/pyfluent-visualization-docs
145-
token: ${{ steps.get_workflow_token.outputs.token }}
145+
token: ${{ secrets.DOC_DEPLOYMENT_PAT }}
146146
BRANCH: gh-pages
147147
FOLDER: doc/_build/html
148148
CLEAN: true

.github/workflows/nightly-doc-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
uses: JamesIves/[email protected]
6262
with:
6363
repository-name: pyansys/pyfluent-visualization-dev-docs
64-
token: ${{ steps.get_workflow_token.outputs.token }}
64+
token: ${{ secrets.DOC_DEPLOYMENT_PAT }}
6565
BRANCH: gh-pages
6666
FOLDER: doc/_build/html
6767
CLEAN: true

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
55
[tool.poetry]
66
# Check https://python-poetry.org/docs/pyproject/ for all available sections
77
name = "ansys-fluent-visualization"
8-
version = "0.2.dev0"
8+
version = "0.3.dev0"
99
description = "A python wrapper for ansys Fluent visualization"
1010
license = "MIT"
1111
authors = ["ANSYS, Inc. <[email protected]>"]

src/ansys/fluent/visualization/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
except ModuleNotFoundError:
1111
import importlib_metadata
1212

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

1515
required_libraries = {
1616
"vtk": "9.1.0",

tests/test_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_pkg_version():
5-
assert __version__ == "0.2.dev0"
5+
assert __version__ == "0.3.dev0"

0 commit comments

Comments
 (0)