From f12bb05d618478672ed170fc5d0035aa39340031 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Thu, 14 May 2020 23:24:38 +0200 Subject: [PATCH] Update python version to 3.8. --- src/runner/pythonrunner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }