From d2325c57a34f4596321430995ba1714e43afbb8f Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Tue, 13 Oct 2020 11:00:13 +0200 Subject: [PATCH] Change minimum Python version to 3.6 --- nw/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nw/__init__.py b/nw/__init__.py index 46c065b0..72327b2b 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -200,9 +200,9 @@ def main(sysArgs=None): # Check Packages and Versions errorData = [] errorCode = 0 - if sys.hexversion < 0x030403f0: + if sys.hexversion < 0x030600f0: errorData.append( - "At least Python 3.4.3 is required, but 3.6 is highly recommended." + "At least Python 3.6.0 is required, found %s." % CONFIG.verPyString ) errorCode |= 4 if CONFIG.verQtValue < 50200: