Fix Python version check and translations

This commit is contained in:
Jeremy Rimpo
2021-12-10 09:35:32 -06:00
parent 7e8748abf0
commit cc129e4895
6 changed files with 118 additions and 25 deletions
+1 -1
View File
@@ -1570,6 +1570,6 @@ bool PythonRunner::isPythonInstalled() const
bool PythonRunner::isPythonVersionSupported() const
{
const char *version = Py_GetVersion();
return strstr(version, "3.8") == version;
return strstr(version, "3.10") == version;
}