Skip to content

Commit e30f89c

Browse files
authored
build: Bump version 0.31.1 (#4386)
1 parent 1ab6416 commit e30f89c

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -463,20 +463,20 @@ jobs:
463463
doc/source/api/core/meshing/datamodel
464464
doc/source/api/core/solver/tui
465465
doc/source/api/core/solver/datamodel
466-
key: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-${{ vars.FLUENT_STABLE_IMAGE_DEV }}-${{ hashFiles('src/ansys/fluent/core/codegen/**') }}
467-
restore-keys: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-${{ vars.FLUENT_STABLE_IMAGE_DEV }}
466+
key: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-v25.2.0-${{ hashFiles('src/ansys/fluent/core/codegen/**') }}
467+
restore-keys: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-v25.2.0
468468

469469
- name: Pull 25.2 Fluent docker image
470470
if: steps.cache-251-api-code.outputs.cache-hit != 'true'
471471
run: make docker-pull
472472
env:
473-
FLUENT_IMAGE_TAG: ${{ vars.FLUENT_STABLE_IMAGE_DEV }}
473+
FLUENT_IMAGE_TAG: v25.2.0
474474

475475
- name: Run 25.2 API codegen
476476
if: steps.cache-252-api-code.outputs.cache-hit != 'true'
477477
run: make api-codegen
478478
env:
479-
FLUENT_IMAGE_TAG: ${{ vars.FLUENT_STABLE_IMAGE_DEV }}
479+
FLUENT_IMAGE_TAG: v25.2.0
480480

481481
- name: Print 25.2 Fluent version info
482482
run: |
@@ -527,7 +527,7 @@ jobs:
527527
version: 252
528528
timeout-minutes: 60
529529
env:
530-
FLUENT_IMAGE_TAG: ${{ matrix.version == 252 && vars.FLUENT_STABLE_IMAGE_DEV || matrix.image-tag }}
530+
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }}
531531

532532
steps:
533533

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ style:
44

55
install:
66
@pip install -r requirements/requirements_build.txt
7+
@git clean -fd
78
@flit build
89
@pip install -q --force-reinstall dist/*.whl
910
@python src/ansys/fluent/core/report.py

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ requires-python = ">=3.10,<3.14"
1111
license = {file = "LICENSE"}
1212
authors = [{ name = "ANSYS, Inc.", email = "[email protected]" }]
1313
maintainers = [{ name = "ANSYS, Inc.", email = "[email protected]" }]
14-
repository = "https://github.com/ansys/pyfluent"
1514
classifiers = [
1615
"Development Status :: 4 - Beta",
1716
"Programming Language :: Python :: 3",
@@ -80,9 +79,9 @@ docs = [
8079
name = "ansys.fluent.core"
8180

8281
[project.urls]
83-
"Documentation" = "https://fluent.docs.pyansys.com/"
84-
"Source" = "https://github.com/ansys/pyfluent"
85-
"Tracker" = "https://github.com/ansys/pyfluent/issues"
82+
Documentation = "https://fluent.docs.pyansys.com/"
83+
Source = "https://github.com/ansys/pyfluent"
84+
Tracker = "https://github.com/ansys/pyfluent/issues"
8685

8786
[tool.pytest.ini_options]
8887
testpaths = ["tests"]

src/ansys/fluent/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
from ansys.fluent.core.utils.fluent_version import FluentVersion # noqa: F401
7171
from ansys.fluent.core.utils.setup_for_fluent import setup_for_fluent # noqa: F401
7272

73-
__version__ = "0.31.0"
73+
__version__ = "0.31.1"
7474

7575
_VERSION_INFO = None
7676
"""

src/ansys/fluent/core/launcher/fluent_container.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ def configure_container_dict(
306306
environment={
307307
"ANSYSLMD_LICENSE_FILE": license_server,
308308
"REMOTING_PORTS": f"{container_grpc_port}/portspan=2",
309+
"FLUENT_ALLOW_REMOTE_GRPC_CONNECTION": "1",
309310
}
310311
)
311312

src/ansys/fluent/core/launcher/slurm_launcher.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,7 @@ def _prepare(self):
459459
launch_cmd += _build_journal_argument(
460460
self._argvals["topy"], self._argvals["journal_file_names"]
461461
)
462+
launch_cmd += ' -setenv="FLUENT_ALLOW_REMOTE_GRPC_CONNECTION=1"'
462463

463464
logger.debug(f"Launching Fluent with command: {launch_cmd}")
464465
proc = subprocess.Popen(launch_cmd, **kwargs)

0 commit comments

Comments
 (0)