Changeset 660

Show
Ignore:
Timestamp:
11/08/05 04:28:47 (3 years ago)
Author:
arjanmol
Message:

require Python 2.4

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/gaphor/setup.py

    r645 r660  
    2929str_version = sys.version[:3] 
    3030version = map(int, str_version.split('.')) 
    31 if version < [2, 2]: 
     31if version < [2, 4]: 
    3232    raise SystemExit, \ 
    33         "Python 2.2 or higher is required, %s found" % str_version 
     33        "Python 2.4 or higher is required, %s found" % str_version 
    3434 
    3535