Update minimum Python version to 3.5.0

This commit is contained in:
ngosang 2020-08-18 20:56:39 +02:00
parent 207337682c
commit 71be4f03be
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()