Bump python version minimum requirement

PR #18996.
This commit is contained in:
Chocobo1
2023-05-22 12:37:02 +08:00
committed by GitHub
parent 4ef8f39f23
commit b406d669b3
4 changed files with 17 additions and 4 deletions

View File

@@ -248,7 +248,7 @@ bool Utils::ForeignApps::PythonInfo::isValid() const
bool Utils::ForeignApps::PythonInfo::isSupportedVersion() const
{
return (version >= Version {3, 5, 0});
return (version >= Version {3, 7, 0});
}
PythonInfo Utils::ForeignApps::pythonInfo()