From a476d7d85cfde48bb1d2a2870253b4cf32a480d5 Mon Sep 17 00:00:00 2001 From: Louis-Philippe Lemieux Perreault Date: Thu, 11 Feb 2021 11:44:55 -0500 Subject: [PATCH] Version bump --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 115ceb3..5d878c9 100644 --- a/setup.py +++ b/setup.py @@ -16,17 +16,17 @@ MAJOR = 1 -MINOR = 4 -MICRO = 2 +MINOR = 5 +MICRO = 0 VERSION = "{0}.{1}.{2}".format(MAJOR, MINOR, MICRO) def check_python_version(): - """Checks the python version, exits if < 3.4.""" + """Checks the python version, exits if < 3.7.""" python_major, python_minor = sys.version_info[:2] - if python_major != 3 or python_minor < 4: - sys.stderr.write("genipe requires python 3 (version 3.4 or higher)\n") + if python_major != 3 or python_minor < 7: + sys.stderr.write("genipe requires python 3 (version 3.7 or higher)\n") sys.exit(1)