Skip to content

Commit 1fefb56

Browse files
committed
Merge branch 'main' into release/0.64
2 parents 2a5fc46 + be8ff4a commit 1fefb56

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -558,13 +558,6 @@ jobs:
558558

559559
- uses: actions/download-artifact@v3
560560

561-
- name: 'Download the HTML as a zip'
562-
uses: dawidd6/action-download-artifact@v2
563-
with:
564-
name: documentation-html
565-
skip_unpack: true
566-
github_token: ${{secrets.GITHUB_TOKEN}}
567-
568561
- name: Display structure of downloaded files
569562
run: ls -R
570563

@@ -576,7 +569,6 @@ jobs:
576569
./**/*.tar.gz
577570
./**/*pymapdl-Documentation-*.pdf
578571
./**/*.zip
579-
./**/*documentation-html*.zip
580572
581573
- name: Upload to Public PyPi
582574
env:

src/ansys/mapdl/core/launcher.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def _version_from_path(path):
114114
"""Extract ansys version from a path. Generally, the version of
115115
ANSYS is contained in the path:
116116
117-
C:/Program Files/ANSYS Inc/v202/ansys/bin/win64/ANSYS202.exe
117+
C:/Program Files/ANSYS Inc/v202/ansys/bin/winx64/ANSYS202.exe
118118
119119
/usr/ansys_inc/v211/ansys/bin/mapdl
120120
@@ -395,7 +395,7 @@ def launch_grpc(
395395
Run MAPDL with shared memory parallel and specify the location of
396396
the ansys binary.
397397
398-
>>> exec_file = 'C:/Program Files/ANSYS Inc/v202/ansys/bin/win64/ANSYS202.exe'
398+
>>> exec_file = 'C:/Program Files/ANSYS Inc/v202/ansys/bin/winx64/ANSYS202.exe'
399399
>>> mapdl = launch_mapdl(exec_file, additional_switches='-smp')
400400
401401
"""
@@ -968,7 +968,7 @@ def change_default_ansys_path(exe_loc):
968968
969969
Change default Ansys location on Windows
970970
971-
>>> ans_pth = 'C:/Program Files/ANSYS Inc/v193/ansys/bin/win64/ANSYS193.exe'
971+
>>> ans_pth = 'C:/Program Files/ANSYS Inc/v193/ansys/bin/winx64/ANSYS193.exe'
972972
>>> launcher.change_default_ansys_path(ans_pth)
973973
>>> launcher.check_valid_ansys()
974974
True
@@ -1580,7 +1580,7 @@ def launch_mapdl(
15801580
Run MAPDL with shared memory parallel and specify the location of
15811581
the Ansys binary.
15821582
1583-
>>> exec_file = 'C:/Program Files/ANSYS Inc/v201/ansys/bin/win64/ANSYS201.exe'
1583+
>>> exec_file = 'C:/Program Files/ANSYS Inc/v231/ansys/bin/winx64/ANSYS231.exe'
15841584
>>> mapdl = launch_mapdl(exec_file, additional_switches='-smp')
15851585
15861586
Connect to an existing instance of MAPDL at IP 192.168.1.30 and

src/ansys/mapdl/core/pool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class LocalMapdlPool:
9999
100100
Create a pool while specifying the MAPDL executable in Windows.
101101
102-
>>> exec_file = 'C:/Program Files/ANSYS Inc/v212/ansys/bin/win64/ANSYS212.exe'
102+
>>> exec_file = 'C:/Program Files/ANSYS Inc/v212/ansys/bin/winx64/ANSYS212.exe'
103103
>>> pool = LocalMapdlPool(10, exec_file=exec_file)
104104
Creating Pool: 100%|########| 10/10 [00:01<00:00, 1.43it/s]
105105

0 commit comments

Comments
 (0)