Changeset - a1fba57f46fa
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 15 years ago 2011-03-20 16:23:48
marcin@python-works.com
added check for python <2.5 in setup file
1 file changed with 3 insertions and 0 deletions:
0 comments (0 inline, 0 general)
setup.py
Show inline comments
 
import sys
 
from rhodecode import get_version
 
from rhodecode import __platform__
 

	
 
py_version = sys.version_info
 

	
 
if py_version < (2, 5):
 
    raise Exception('RhodeCode requires python 2.5 or later')
 

	
 
requirements = [
 
        "Pylons==1.0.0",
 
        "WebHelpers>=1.2",
 
        "SQLAlchemy>=0.6.6",
 
        "Mako>=0.4.0",
 
        "vcs>=0.2.0",
0 comments (0 inline, 0 general)