Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: Report a security vulnerability
url: https://github.com/ansys/pymechanical/security/advisories/new
about: Please report security vulnerabilities using GitHub's private vulnerability reporting.
- name: Questions and Discussions
url: https://github.com/ansys/pymechanical/discussions
about: For general questions and discussions, please use GitHub Discussions.
1 change: 1 addition & 0 deletions doc/changelog.d/1652.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dependencies for candidate product
11 changes: 9 additions & 2 deletions mechanical-env
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,15 @@ LD_LIBRARY_PATH=${!awp_root}/tp/stdc++\
:${!awp_root}/Framework/bin/Linux64

# Add extra path to the dynamic library load path depending on version
# For version 261 or greater
if [ "$version" = "261" ] || [ "$version" -gt "261" ]; then
# For version 271 or greater
if [ "$version" -ge "271" ]; then
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}\
:${!awp_root}/tp/IntelMKL/2024.2.0/linx64/lib/intel64\
:${!awp_root}/tp/nss/3.89/lib\
:${!awp_root}/tp/IntelCompiler/2025.3.2/linx64/lib/intel64\
:${!awp_root}/tp/qt/5.15.19/linx64/lib\
:${!awp_root}/tp/openssl/3.5/linx64/lib
elif [ "$version" = "261" ]; then
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}\
:${!awp_root}/tp/IntelMKL/2024.2.0/linx64/lib/intel64\
:${!awp_root}/tp/nss/3.89/lib\
Expand Down
Loading