Skip to content

Commit

Permalink
build: Bump version to v0.27.0 (#3517)
Browse files Browse the repository at this point in the history
* build: Bump vresion to v0.27.0

* Update toml.

* Update pyansys-units version.
  • Loading branch information
prmukherj authored Nov 27, 2024
1 parent 8396888 commit fe24eee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 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-core"
version = "0.27.dev1"
version = "0.27.0"
description = "PyFluent provides Pythonic access to Ansys Fluent"
license = "MIT"
authors = ["ANSYS, Inc. <[email protected]>"]
Expand Down Expand Up @@ -43,7 +43,7 @@ python = ">=3.10,<4.0"
ansys-api-fluent = "^0.3.28"
ansys-platform-instancemanagement = "~=1.0"
ansys-tools-filetransfer = ">=0.1,<0.3"
ansys-units = "^0.3.2"
ansys-units = "^0.3.3"
docker = ">=7.1.0"
grpcio = "^1.30.0"
grpcio-health-checking = "^1.30.0"
Expand Down
2 changes: 1 addition & 1 deletion src/ansys/fluent/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

# major, minor, patch
version_info = 0, 27, "dev1"
version_info = 0, 27, 0

# Nice string for the version
__version__ = ".".join(map(str, version_info))
Expand Down
2 changes: 2 additions & 0 deletions tests/fluent/test_version/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
assert ansys.fluent.core.__version__ == "0.27.0" # noqa: F821
exit()

0 comments on commit fe24eee

Please sign in to comment.