diff --git a/pyproject.toml b/pyproject.toml index e4cff4f9743..7fbf53054fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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.28.dev0" description = "PyFluent provides Pythonic access to Ansys Fluent" license = "MIT" authors = ["ANSYS, Inc. "] @@ -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" diff --git a/src/ansys/fluent/core/_version.py b/src/ansys/fluent/core/_version.py index 0240e55ca02..7042815c134 100644 --- a/src/ansys/fluent/core/_version.py +++ b/src/ansys/fluent/core/_version.py @@ -6,7 +6,7 @@ """ # major, minor, patch -version_info = 0, 27, "dev1" +version_info = 0, 28, "dev0" # Nice string for the version __version__ = ".".join(map(str, version_info)) diff --git a/tests/fluent/test_version/test.py b/tests/fluent/test_version/test.py new file mode 100644 index 00000000000..5f9349fcaf1 --- /dev/null +++ b/tests/fluent/test_version/test.py @@ -0,0 +1,2 @@ +assert ansys.fluent.core.__version__ == "0.28.dev0" # noqa: F821 +exit()