File tree Expand file tree Collapse file tree 6 files changed +12
-10
lines changed Expand file tree Collapse file tree 6 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -463,20 +463,20 @@ jobs:
463
463
doc/source/api/core/meshing/datamodel
464
464
doc/source/api/core/solver/tui
465
465
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
468
468
469
469
- name : Pull 25.2 Fluent docker image
470
470
if : steps.cache-251-api-code.outputs.cache-hit != 'true'
471
471
run : make docker-pull
472
472
env :
473
- FLUENT_IMAGE_TAG : ${{ vars.FLUENT_STABLE_IMAGE_DEV }}
473
+ FLUENT_IMAGE_TAG : v25.2.0
474
474
475
475
- name : Run 25.2 API codegen
476
476
if : steps.cache-252-api-code.outputs.cache-hit != 'true'
477
477
run : make api-codegen
478
478
env :
479
- FLUENT_IMAGE_TAG : ${{ vars.FLUENT_STABLE_IMAGE_DEV }}
479
+ FLUENT_IMAGE_TAG : v25.2.0
480
480
481
481
- name : Print 25.2 Fluent version info
482
482
run : |
@@ -527,7 +527,7 @@ jobs:
527
527
version : 252
528
528
timeout-minutes : 60
529
529
env :
530
- FLUENT_IMAGE_TAG : ${{ matrix.version == 252 && vars.FLUENT_STABLE_IMAGE_DEV || matrix. image-tag }}
530
+ FLUENT_IMAGE_TAG : ${{ matrix.image-tag }}
531
531
532
532
steps :
533
533
Original file line number Diff line number Diff line change 4
4
5
5
install :
6
6
@pip install -r requirements/requirements_build.txt
7
+ @git clean -fd
7
8
@flit build
8
9
@pip install -q --force-reinstall dist/* .whl
9
10
@python src/ansys/fluent/core/report.py
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ requires-python = ">=3.10,<3.14"
11
11
license = {file = " LICENSE" }
12
12
authors = [{ name = " ANSYS, Inc." , email = " pyansys.core@ansys.com" }]
13
13
maintainers = [{ name = " ANSYS, Inc." , email = " pyansys.core@ansys.com" }]
14
- repository = " https://github.com/ansys/pyfluent"
15
14
classifiers = [
16
15
" Development Status :: 4 - Beta" ,
17
16
" Programming Language :: Python :: 3" ,
@@ -80,9 +79,9 @@ docs = [
80
79
name = " ansys.fluent.core"
81
80
82
81
[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"
86
85
87
86
[tool .pytest .ini_options ]
88
87
testpaths = [" tests" ]
Original file line number Diff line number Diff line change 70
70
from ansys .fluent .core .utils .fluent_version import FluentVersion # noqa: F401
71
71
from ansys .fluent .core .utils .setup_for_fluent import setup_for_fluent # noqa: F401
72
72
73
- __version__ = "0.31.0 "
73
+ __version__ = "0.31.1 "
74
74
75
75
_VERSION_INFO = None
76
76
"""
Original file line number Diff line number Diff line change @@ -306,6 +306,7 @@ def configure_container_dict(
306
306
environment = {
307
307
"ANSYSLMD_LICENSE_FILE" : license_server ,
308
308
"REMOTING_PORTS" : f"{ container_grpc_port } /portspan=2" ,
309
+ "FLUENT_ALLOW_REMOTE_GRPC_CONNECTION" : "1" ,
309
310
}
310
311
)
311
312
Original file line number Diff line number Diff line change @@ -459,6 +459,7 @@ def _prepare(self):
459
459
launch_cmd += _build_journal_argument (
460
460
self ._argvals ["topy" ], self ._argvals ["journal_file_names" ]
461
461
)
462
+ launch_cmd += ' -setenv="FLUENT_ALLOW_REMOTE_GRPC_CONNECTION=1"'
462
463
463
464
logger .debug (f"Launching Fluent with command: { launch_cmd } " )
464
465
proc = subprocess .Popen (launch_cmd , ** kwargs )
You can’t perform that action at this time.
0 commit comments