Changeset 91

Show
Ignore:
Timestamp:
03/29/08 17:07:01 (8 months ago)
Author:
amcgregor
Message:

Altered uuid Python version check to check for less than 2.5, not 2.4 or less.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/setup.py

    r90 r91  
    6363install_requires = [] 
    6464 
    65 if sys.version_info <= (2, 4): 
     65if sys.version_info < (2, 5): 
    6666    install_requires.append('uuid') 
    6767