Skip to content

Commit

Permalink
build: Bump version to v0.26.1
Browse files Browse the repository at this point in the history
  • Loading branch information
prmukherj committed Oct 9, 2024
1 parent d2ce51e commit cf4158e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
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-core"
version = "0.26.0"
version = "0.26.1"
description = "PyFluent provides Pythonic access to Ansys Fluent"
license = "MIT"
authors = ["ANSYS, Inc. <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions src/ansys/fluent/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"""

# major, minor, patch
version_info = 0, 26, 0
version_info = 0, 26, 1

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

# Current Fluent version
fluent_release_version = "24.1.0"
fluent_release_version = "25.1.0"
3 changes: 1 addition & 2 deletions tests/test_type_stub.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import pytest

from ansys.fluent.core import CODEGEN_OUTDIR
from ansys.fluent.core._version import fluent_release_version
from ansys.fluent.core.utils.fluent_version import FluentVersion


Expand All @@ -13,7 +12,7 @@ def test_settings_stub():
# The type-stub files, which are generated for settings API, are parsed by the
# intellisense engine while typing in editors like vscode. This test validates the
# information contained in a type-stub file.
version = FluentVersion(fluent_release_version).number
version = FluentVersion.v241.number
stub_file = CODEGEN_OUTDIR / "solver" / f"settings_{version}" / "export.pyi"
assert stub_file.exists()
with open(stub_file) as f:
Expand Down

0 comments on commit cf4158e

Please sign in to comment.