From 833bc5ffd241fdf82ce5e4913a15a84c9f7f09a1 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Wed, 5 Feb 2020 01:33:43 +0100 Subject: [PATCH] Set minimum Python version to 3.6 --- novelWriter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/novelWriter.py b/novelWriter.py index 0723076f..d7c3d314 100755 --- a/novelWriter.py +++ b/novelWriter.py @@ -3,8 +3,8 @@ import sys -if sys.hexversion < 0x030500F0: - print("ERROR: At least Python 3.5 is required") +if sys.hexversion < 0x030600F0: + print("ERROR: At least Python 3.6 is required") sys.exit(1) try: