Skip to content

Commit c3e9976

Browse files
Removed SurfaceSelector from __init__.py and ready for release (#1739)
1 parent 186a171 commit c3e9976

File tree

17 files changed

+18
-18
lines changed

17 files changed

+18
-18
lines changed

flow360/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from flow360.component.simulation.framework.entity_selector import (
1717
BodyGroupSelector,
1818
EdgeSelector,
19-
SurfaceSelector,
2019
VolumeSelector,
2120
)
2221
from flow360.component.simulation.meshing_param import snappy
@@ -213,7 +212,6 @@
213212
"create_draft",
214213
"CoordinateSystem",
215214
"MirrorPlane",
216-
"SurfaceSelector",
217215
"EdgeSelector",
218216
"VolumeSelector",
219217
"BodyGroupSelector",

flow360/component/simulation/draft_context/context.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,9 @@ def preview_selector(self, selector: "EntitySelector", *, return_names: bool = T
315315
... print(matched) # ['wing_upper', 'wing_lower', ...]
316316
"""
317317
# pylint: disable=import-outside-toplevel
318-
318+
log.warning(
319+
"!!! This is a beta feature and may be removed or changed in future releases. !!!"
320+
)
319321
from flow360.component.simulation.framework.entity_selector import (
320322
expand_entity_list_selectors,
321323
)

flow360/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
version
33
"""
44

5-
__version__ = "25.8.3b1"
5+
__version__ = "25.8.3"
66
__solver_version__ = "release-25.8"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "flow360"
3-
version = "v25.8.3b1"
3+
version = "v25.8.3"
44
description = "Flow360 Python Client"
55
authors = ["Flexcompute <support@flexcompute.com>"]
66

tests/ref/simulation/service_init_geometry.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "25.8.3b1",
2+
"version": "25.8.3",
33
"unit_system": {
44
"name": "SI"
55
},

tests/ref/simulation/service_init_surface_mesh.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "25.8.3b1",
2+
"version": "25.8.3",
33
"unit_system": {
44
"name": "SI"
55
},

tests/ref/simulation/service_init_volume_mesh.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "25.8.3b1",
2+
"version": "25.8.3",
33
"unit_system": {
44
"name": "SI"
55
},

tests/simulation/converter/ref/ref_monitor.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "25.8.3b1",
2+
"version": "25.8.3",
33
"unit_system": {
44
"name": "SI"
55
},

tests/simulation/data/geometry_airplane/simulation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "25.8.3b1",
2+
"version": "25.8.3",
33
"unit_system": {
44
"name": "SI"
55
},

tests/simulation/data/simulation_by_face_id.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "25.8.3b1",
2+
"version": "25.8.3",
33
"unit_system": {
44
"name": "SI"
55
},

0 commit comments

Comments
 (0)