Skip to content

Commit

Permalink
Merge pull request #4 from Alignak-monitoring/new-structure
Browse files Browse the repository at this point in the history
New structure needs only Python 2.6
  • Loading branch information
mohierf authored Oct 16, 2016
2 parents db5ef66 + 7d51e79 commit 75865c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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 Expand Up @@ -107,7 +107,7 @@ def run(self):
data_files = data_files,

# Dependencies (if some) ...
install_requires=[''],
install_requires=['alignak_setup'],

# Entry points (if some) ...
entry_points={
Expand Down

0 comments on commit 75865c2

Please sign in to comment.