diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 2effdddf3..8794391b7 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -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. diff --git a/doc/changelog.d/1652.fixed.md b/doc/changelog.d/1652.fixed.md new file mode 100644 index 000000000..c03afc042 --- /dev/null +++ b/doc/changelog.d/1652.fixed.md @@ -0,0 +1 @@ +Dependencies for candidate product diff --git a/mechanical-env b/mechanical-env index 95c6ac2f4..202cd1c25 100755 --- a/mechanical-env +++ b/mechanical-env @@ -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\