Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lemieuxl committed Feb 11, 2021
1 parent fd4d757 commit a476d7d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit a476d7d

Please sign in to comment.