Skip to content

Commit 3fcbd60

Browse files
authored
build: Bump version 0.30.6 (#4387)
1 parent f730b88 commit 3fcbd60

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -447,20 +447,20 @@ jobs:
447447
doc/source/api/core/meshing/datamodel
448448
doc/source/api/core/solver/tui
449449
doc/source/api/core/solver/datamodel
450-
key: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-${{ vars.FLUENT_STABLE_IMAGE_DEV }}-${{ hashFiles('src/ansys/fluent/core/codegen/**') }}
451-
restore-keys: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-${{ vars.FLUENT_STABLE_IMAGE_DEV }}
450+
key: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-v25.2.0-${{ hashFiles('src/ansys/fluent/core/codegen/**') }}
451+
restore-keys: API-Code-v${{ env.API_CODE_CACHE }}-${{ steps.version.outputs.PYFLUENT_VERSION }}-v25.2.0
452452

453453
- name: Pull 25.2 Fluent docker image
454454
if: steps.cache-251-api-code.outputs.cache-hit != 'true'
455455
run: make docker-pull
456456
env:
457-
FLUENT_IMAGE_TAG: ${{ vars.FLUENT_STABLE_IMAGE_DEV }}
457+
FLUENT_IMAGE_TAG: v25.2.0
458458

459459
- name: Run 25.2 API codegen
460460
if: steps.cache-252-api-code.outputs.cache-hit != 'true'
461461
run: make api-codegen
462462
env:
463-
FLUENT_IMAGE_TAG: ${{ vars.FLUENT_STABLE_IMAGE_DEV }}
463+
FLUENT_IMAGE_TAG: v25.2.0
464464

465465
- name: Print 25.2 Fluent version info
466466
run: |

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",
@@ -78,9 +77,9 @@ docs = [
7877
name = "ansys.fluent.core"
7978

8079
[project.urls]
81-
"Documentation" = "https://fluent.docs.pyansys.com/"
82-
"Source" = "https://github.com/ansys/pyfluent"
83-
"Tracker" = "https://github.com/ansys/pyfluent/issues"
80+
Documentation = "https://fluent.docs.pyansys.com/"
81+
Source = "https://github.com/ansys/pyfluent"
82+
Tracker = "https://github.com/ansys/pyfluent/issues"
8483

8584
[tool.pytest.ini_options]
8685
testpaths = ["tests"]

src/ansys/fluent/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
from ansys.fluent.core.utils.fluent_version import FluentVersion # noqa: F401
6363
from ansys.fluent.core.utils.setup_for_fluent import setup_for_fluent # noqa: F401
6464

65-
__version__ = "0.30.5"
65+
__version__ = "0.30.6"
6666

6767
_VERSION_INFO = None
6868
"""

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ def configure_container_dict(
288288
environment={
289289
"ANSYSLMD_LICENSE_FILE": license_server,
290290
"REMOTING_PORTS": f"{container_grpc_port}/portspan=2",
291+
"FLUENT_ALLOW_REMOTE_GRPC_CONNECTION": "1",
291292
}
292293
)
293294

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)