Changeset 4553

Show
Ignore:
Timestamp:
05/01/08 08:53:35 (3 months ago)
Author:
chrisz
Message:

Eased restrictions for SO versions. If there are any issues with certain SO/SA versions, then there should be tests revealing these issues and version restrictions should be accompanied by comments explaining why they have been put in place.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0/setup.py

    r4152 r4553  
    1414# setup params 
    1515install_requires = [ 
    16     "CherryPy >= 2.3.0,<3.0.0alpha", 
     16    "CherryPy >= 2.3.0, < 3.0.0alpha", 
    1717    "ConfigObj >= 4.3.2", 
    1818    "DecoratorTools >= 1.4", 
     
    3030 
    3131future = [ 
    32     "Elixir>=0.4.0", 
    33     "Genshi>=0.4.4", 
     32    "Elixir >= 0.4.0", 
     33    "Genshi >= 0.4.4", 
    3434] 
    3535 
    36 if sys.version_info < (2, 5): 
    37     sqlobject = [ 
    38         "SQLObject==bugfix,>=0.7.1dev-r1860,<=0.7.99", 
    39     ] 
    40 else: 
    41     sqlobject = [ 
    42         "SQLObject>=0.8,<=0.10.0" 
    43     ] 
     36sqlobject = [ 
     37    "SQLObject >= 0.7.1" 
     38
    4439 
    4540sqlalchemy = [ 
     
    4843 
    4944testtools =  [ 
    50     "nose >= 0.9.3,<=0.10.0a1", 
     45    "nose >= 0.9.3, <= 0.10.0a1", 
    5146] 
    5247 
    5348tgtesttools =  [ 
    54     "nose >= 0.9.3,<=0.10.0a1", 
     49    "nose >= 0.9.3, <= 0.10.0a1", 
    5550    "SQLAlchemy >= 0.3.10", 
    5651] 
     
    6762else: 
    6863    # currently there are no extra requires for Python >= 2.5 
    69     ##install_requires.extend([]) 
     64    # install_requires.extend([]) 
    7065    pass 
    7166 
  • branches/1.1/setup.py

    r4406 r4553  
    3232] 
    3333 
    34  
    35 if sys.version_info < (2, 5): 
    36     sqlobject = ["SQLObject >= 0.7.1, < 0.10.0"] 
    37 else: 
    38     sqlobject = ["SQLObject >= 0.8, <= 0.10.0"] 
     34sqlobject = [ 
     35    "SQLObject >= 0.7.1" 
     36
    3937 
    4038exp = ["TGFastData"]