Update python version to 3.8.

This commit is contained in:
Mikaël Capelle
2020-05-14 23:24:38 +02:00
parent d931d71a43
commit f12bb05d61
+1 -1
View File
@@ -1020,6 +1020,6 @@ bool PythonRunner::isPythonInstalled() const
bool PythonRunner::isPythonVersionSupported() const
{
const char *version = Py_GetVersion();
return strstr(version, "3.7") == version;
return strstr(version, "3.8") == version;
}