Skip to content

Commit 43dc1fe

Browse files
authored
Merge branch 'main' into example/busbar_joule_heating
2 parents 0605f8f + 5d33f1c commit 43dc1fe

File tree

137 files changed

+1037
-378
lines changed

Some content is hidden

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

137 files changed

+1037
-378
lines changed

.github/workflows/label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
# Label based on modified files
3434
- name: Label based on changed files
35-
uses: actions/labeler@v5
35+
uses: actions/labeler@v6
3636
with:
3737
repo-token: ${{ secrets.GITHUB_TOKEN }}
3838
sync-labels: true

doc/source/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
os.environ["PYAEDT_NON_GRAPHICAL"] = "1"
3232
os.environ["PYAEDT_DOC_GENERATION"] = "1"
33+
os.environ["PYANSYS_VISUALIZER_HTML_BACKEND"] = "true"
3334

3435
LaTeXBuilder.supported_image_types = ["image/png", "image/pdf", "image/svg+xml"]
3536

examples/aedt/circuit/index.rst

Lines changed: 0 additions & 14 deletions

examples/aedt/maxwell_2d/index.rst

Lines changed: 15 additions & 1 deletion

examples/aedt_general/components/component_conversion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# ### Define constants
3333
# Constants help ensure consistency and avoid repetition throughout the example.
3434

35-
AEDT_VERSION = "2025.1"
35+
AEDT_VERSION = "2025.2"
3636
OLD_AEDT_VERSION = "2024.1"
3737
NG_MODE = False # Open AEDT UI when AEDT is launched.
3838

examples/aedt_general/components/reuse_component.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# ### Define constants
2626
# Constants help ensure consistency and avoid repetition throughout the example.
2727

28-
AEDT_VERSION = "2025.1"
28+
AEDT_VERSION = "2025.2"
2929
NG_MODE = False # Open AEDT UI when it is launched.
3030

3131
# ### Create temporary directory

examples/aedt_general/configuration_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
# Define constants.
4141

42-
AEDT_VERSION = "2025.1"
42+
AEDT_VERSION = "2025.2"
4343
NG_MODE = False # Open AEDT UI when it is launched.
4444

4545
# ## Create temporary directory

examples/aedt_general/modeler/circuit_schematic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
# Define constants.
2323

24-
AEDT_VERSION = "2025.1"
24+
AEDT_VERSION = "2025.2"
2525
NG_MODE = False # Open AEDT UI when it is launched.
2626

2727
# ## Create temporary directory

examples/aedt_general/modeler/coordinate_system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# Define constants.
1919

20-
AEDT_VERSION = "2025.1"
20+
AEDT_VERSION = "2025.2"
2121
NG_MODE = False # Open the AEDT UI when it is launched.
2222

2323
# ## Create temporary directory

examples/aedt_general/modeler/netlist_to_schematic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# ## Define constants.
2424

25-
AEDT_VERSION = "2025.1"
25+
AEDT_VERSION = "2025.2"
2626
NG_MODE = False # Open AEDT UI when it is launched.
2727

2828
# ## Create temporary directory

0 commit comments

Comments
 (0)