Changeset - f6fcb21db7b3
[Not reviewed]
default
0 1 0
Mads Kiilerich - 10 years ago 2015-08-05 12:29:41
madski@unity3d.com
pylons: support Pylons 1.0.2

Pylons 1.0.2 requires webob>=1.1.1 and Pylons 1.0.0 seemed to have problems
with later versions so stick the minimum version for now.
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
setup.py
Show inline comments
 
@@ -27,27 +27,27 @@ _meta.close()
 
callback = lambda V: ('.'.join(map(str, V[:3])) + '.'.join(V[3:]))
 
__version__ = _get_meta_var('VERSION', _metadata, callback)
 
__license__ = _get_meta_var('__license__', _metadata)
 
__author__ = _get_meta_var('__author__', _metadata)
 
__url__ = _get_meta_var('__url__', _metadata)
 
# defines current platform
 
__platform__ = platform.system()
 

	
 
is_windows = __platform__ in ['Windows']
 

	
 
requirements = [
 
    "waitress==0.8.8",
 
    "webob==1.0.8",
 
    "webob>=1.0.8,<=1.1.1",
 
    "webtest==1.4.3",
 
    "Pylons==1.0.0",
 
    "Pylons>=1.0.0,<=1.0.2",
 
    "Beaker==1.6.4",
 
    "WebHelpers==1.3",
 
    "formencode>=1.2.4,<=1.2.6",
 
    "SQLAlchemy==0.7.10",
 
    "Mako>=0.9.0,<=1.0.0",
 
    "pygments>=1.5",
 
    "whoosh>=2.4.0,<=2.5.7",
 
    "celery>=2.2.5,<2.3",
 
    "babel>=0.9.6,<=1.3",
 
    "python-dateutil>=1.5.0,<2.0.0",
 
    "markdown==2.2.1",
 
    "docutils>=0.8.1,<=0.11",
0 comments (0 inline, 0 general)