GP-4570 ensure supported python version is not used for build tasks

This commit is contained in:
ghidra1 2024-04-30 19:53:01 -04:00
parent e084a4bede
commit 772694c13c

View File

@ -80,7 +80,9 @@ def findPython3() {
}
}
// Don't fail until task execution. Just let "python3" fail.
return 'python3'
// Force use of non-existent python3.7 instead of unsupported python version
// which should fail if a python build is performed.
return 'python3.7'
}
ext.PYTHON3 = findPython3()