diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index cafc72f..007f21e 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -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; }