Skip to content

Commit 382f6ea

Browse files
authored
CHORE : Update product version (#267)
1 parent f862fbe commit 382f6ea

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/ci_cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: public-ubuntu-latest-8-cores
4848
timeout-minutes: 60
4949
container:
50-
image: ghcr.io/ansys/mechanical:25.1.0
50+
image: ghcr.io/ansys/mechanical:25.2.0
5151
options: --entrypoint /bin/bash
5252
needs: [style, doc-style]
5353

examples/00_tips/tips_02.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,7 @@
4343
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4444

4545
# Create an instance of the App class
46-
app = App()
47-
48-
# Update the global variables
49-
app.update_globals(globals())
46+
app = App(globals=globals())
5047

5148
# Print the app to ensure it is working
5249
print(app)

examples/01_basic/harmonic_acoustics.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@
5252
# Initialize the embedded application
5353
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5454

55-
app = App()
56-
app.update_globals(globals())
55+
app = App(globals=globals())
5756
print(app)
5857

5958
# %%

0 commit comments

Comments
 (0)