Skip to content

Commit

Permalink
limit setup to 2.5 and higher
Browse files Browse the repository at this point in the history
  • Loading branch information
squeaky-pl committed Jan 20, 2014
1 parent 987ea4e commit 1932f6a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
from setuptools import setup
from sys import version_info


if version_info < (2, 5):
raise NotImplementedError(
"Sorry, you need at least Python 2.5 or Python 3.x")


environ['PYSTACIA_SETUP'] = '1'
import pystacia

Expand Down

0 comments on commit 1932f6a

Please sign in to comment.