Merge pull request #13268 from ngosang/feature/python35-

Update minimum Python version to 3.5.0
This commit is contained in:
Mike Tzou
2020-09-14 12:03:20 +08:00
committed by GitHub
3 changed files with 5 additions and 5 deletions

View File

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