Skip to content

Commit 74483d1

Browse files
Merge branch 'main' into fix/issue_5911
2 parents 2ec6677 + 0d1055f commit 74483d1

112 files changed

Lines changed: 204 additions & 434 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ignore:
55
- "src/ansys/aedt/core/workflows/installer"
66
- "src/ansys/aedt/core/workflows/templates"
77
- "src/ansys/aedt/core/common_rpc.py"
8-
- "src/ansys/aedt/core/generic/grpc_plugin_dll_class.py"
8+
- "src/ansys/aedt/core/internal/grpc_plugin_dll_class.py"
99
- "src/ansys/aedt/core/edb.py"
1010
- "src/ansys/aedt/core/filtersolutions_core" # ignore filtersolutions feature for the current release pending 2025R1 update
1111
- "src/ansys/aedt/core/filtersolutions.py" # ignore filtersolutions feature for the current release pending 2025R1 update
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Move internal files to a new directory

doc/changelog.d/5915.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Choke designer issues
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Delete ML patch class
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FilterSolutions_class_refacoring

doc/changelog.d/5922.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Prevent solution invalidation in `create_fieldplot_volume`

doc/changelog.d/5923.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
issue 5864. Solve inside ON for Network objects

doc/source/User_guide/emit_modeler.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ EMIT-HFSS link creation example:
4545
import os
4646
import ansys.aedt.core
4747
from ansys.aedt.core import Emit
48-
from ansys.aedt.core.generic.filesystem import Scratch
48+
from ansys.aedt.core.internal.filesystem import Scratch
4949
5050
scratch_path = ansys.aedt.core.generate_unique_folder_name()
5151
temp_folder = os.path.join(scratch_path, ("EmitHFSSExample"))

doc/source/release_1_0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ The following table list the name changes with the old and new paths:
126126
+----------------------------------------------------------------+--------------------------------------------------------------------------+
127127
| pyaedt\\generic\\DataHandlers.py | src\\ansys\\aedt\\core\\generic\\data_handlers.py |
128128
+----------------------------------------------------------------+--------------------------------------------------------------------------+
129-
| pyaedt\\generic\\LoadAEDTFile.py | src\\ansys\\aedt\\core\\generic\\load_aedt_file.py |
129+
| pyaedt\\generic\\LoadAEDTFile.py | src\\ansys\\aedt\\core\\internal\\load_aedt_file.py |
130130
+----------------------------------------------------------------+--------------------------------------------------------------------------+
131131
| pyaedt\\modeler\\modeler2d.py | src\\ansys\\aedt\\core\\modeler\\modeler_2d.py |
132132
+----------------------------------------------------------------+--------------------------------------------------------------------------+

pyproject.toml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ integration-tests = [
6565
]
6666
tests = [
6767
"ipython>=7.30.0,<9.1",
68-
"joblib>=1.0.0,<1.5",
6968
"matplotlib>=3.5.0,<3.11",
7069
"mock>=5.1.0,<5.3",
7170
"numpy>=1.20.0,<2.3",
@@ -78,8 +77,6 @@ tests = [
7877
"pyvista[io]>=0.38.0,<0.45",
7978
"ansys-tools-visualization-interface; python_version >= '3.10'",
8079
"tables; python_version >= '3.10'",
81-
# Never directly imported but required when loading ML related file see #4713
82-
"scikit-learn>=1.0.0,<1.7",
8380
"scikit-rf>=0.30.0,<1.7",
8481
"pytest-timeout>=2.3.0,<2.4",
8582
]
@@ -115,8 +112,6 @@ all = [
115112
"fast-simplification>=0.1.7",
116113
"ansys-tools-visualization-interface; python_version >= '3.10'",
117114
"tables; python_version >= '3.10'",
118-
# Never directly imported but required when loading ML related file see #4713
119-
"scikit-learn>=1.0.0,<1.7",
120115
"scikit-rf>=0.30.0,<1.7",
121116
]
122117
installer = [
@@ -128,8 +123,6 @@ installer = [
128123
"pyvista[io]>=0.38.0,<0.45",
129124
"fast-simplification>=0.1.7",
130125
"ansys-tools-visualization-interface; python_version >= '3.10'",
131-
# Never directly imported but required when loading ML related file see #4713
132-
"scikit-learn>=1.0.0,<1.7",
133126
"scikit-rf>=0.30.0,<1.7",
134127
"jupyterlab>=3.6.0,<4.4",
135128
"ipython>=7.30.0,<9.1",

0 commit comments

Comments
 (0)