Changeset 3780

Show
Ignore:
Timestamp:
05/23/11 11:39:10 (12 months ago)
Author:
elemoine
Message:

be less strict when defining requirements, r=bbinet (closes #630)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • framework/server/branches/1.2/setup.py

    r3563 r3780  
    2828 
    2929 
    30 requirements = ['SQLAlchemy>=0.5.0,<=0.5.99', 
    31                 'Pylons>=0.9.7,<=0.9.7.99', 
    32                 'geojson>=1.0,<=1.0.99'] 
     30requirements = ['SQLAlchemy>=0.5.0', 
     31                'Pylons>=0.9.7', 
     32                'geojson>=1.0'] 
    3333 
    3434# Shapely and Psychopg2 cannot be installed on Windows via python eggs 
    3535if sys.platform != 'win32': 
    36     requirements.append('Shapely>=1.0.7,<=1.0.99') 
    37     requirements.append('psycopg2>=2.0.10,<=2.0.99') 
     36    requirements.append('Shapely>=1.0.7') 
     37    requirements.append('psycopg2>=2.0.10') 
    3838 
    3939# add dependency on ctypes only for python < 2.5 wich does not embed ctypes 
     
    4343 
    4444setup(name                 = 'mapfish', 
    45       version              = '1.2.2', 
     45      version              = '1.2.3', 
    4646      license              = 'LGPLv3', 
    4747      install_requires     = requirements,