Skip to content

Commit

Permalink
Setup requires only python 2.6 rather than 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mohierf committed Oct 15, 2016
1 parent ae8a6e7 commit 7d51e79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
python_version = sys.version_info
except:
python_version = (1, 5)
if python_version < (2, 7):
sys.exit("This application requires a minimum Python 2.7.x, sorry!")
if python_version < (2, 6):
sys.exit("This application requires a minimum Python 2.6.x, sorry!")
elif python_version >= (3,):
sys.exit("This application is not yet compatible with Python 3.x, sorry!")

Expand Down

0 comments on commit 7d51e79

Please sign in to comment.