Skip to content

Commit 4917c0f

Browse files
committed
build: Bump version to v0.24.1
1 parent 2e447a0 commit 4917c0f

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

doc/api_rstgen.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def _get_folder_path(folder_name: str):
1616
-------
1717
Path of the folder.
1818
"""
19-
return (Path(__file__) / ".." / "api" / folder_name).resolve()
19+
return (Path(__file__) / ".." / "source" / "api" / folder_name).resolve()
2020

2121

2222
def _get_file_path(folder_name: str, file_name: str):
@@ -34,7 +34,9 @@ def _get_file_path(folder_name: str, file_name: str):
3434
-------
3535
Path of the file.
3636
"""
37-
return (Path(__file__) / ".." / "api" / folder_name / f"{file_name}.rst").resolve()
37+
return (
38+
Path(__file__) / ".." / "source" / "api" / folder_name / f"{file_name}.rst"
39+
).resolve()
3840

3941

4042
hierarchy = {

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-core"
8-
version = "0.24.0"
8+
version = "0.24.1"
99
description = "PyFluent provides Pythonic access to Ansys Fluent"
1010
license = "MIT"
1111
authors = ["ANSYS, Inc. <[email protected]>"]

src/ansys/fluent/core/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77

88
# major, minor, patch
9-
version_info = 0, 24, "0"
9+
version_info = 0, 24, "1"
1010

1111
# Nice string for the version
1212
__version__ = ".".join(map(str, version_info))

0 commit comments

Comments
 (0)