From 2f73bd3f1da5371d4b0522df2812f063628a7dce Mon Sep 17 00:00:00 2001 From: dkunhamb Date: Wed, 10 Jun 2026 10:50:30 -0500 Subject: [PATCH 1/3] fix tp --- .github/ISSUE_TEMPLATE/config.yml | 3 --- mechanical-env | 9 ++++++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 2effdddf33..8794391b78 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/mechanical-env b/mechanical-env index 7a9989936b..fd8ee4ffd0 100755 --- a/mechanical-env +++ b/mechanical-env @@ -159,7 +159,14 @@ LD_LIBRARY_PATH=${!awp_root}/tp/stdc++\ # Add extra path to the dynamic library load path depending on version # For version 261 or greater -if [ "$version" = "261" ] || [ "$version" -gt "261" ]; then +if [ "$version" = "271" ] || [ "$version" -gt "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\ From 92d130a18c44ddfc80d92d48f40192df66e3bb97 Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Wed, 10 Jun 2026 15:55:04 +0000 Subject: [PATCH 2/3] chore: adding changelog file 1652.fixed.md [dependabot-skip] --- doc/changelog.d/1652.fixed.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/changelog.d/1652.fixed.md diff --git a/doc/changelog.d/1652.fixed.md b/doc/changelog.d/1652.fixed.md new file mode 100644 index 0000000000..c03afc0420 --- /dev/null +++ b/doc/changelog.d/1652.fixed.md @@ -0,0 +1 @@ +Dependencies for candidate product From f4fa9d517e46b457d7c6c5262e0fa12a8d1bf935 Mon Sep 17 00:00:00 2001 From: dkunhamb Date: Wed, 10 Jun 2026 14:50:51 -0500 Subject: [PATCH 3/3] fix: simplify version comparison for 271 or greater in mechanical-env --- mechanical-env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mechanical-env b/mechanical-env index fc94fa42d4..202cd1c254 100755 --- a/mechanical-env +++ b/mechanical-env @@ -164,8 +164,8 @@ 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" = "271" ] || [ "$version" -gt "271" ]; 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\