Zine

open source content publishing system


Changeset 1370:3011b4ea01c8


Ignore:
Timestamp:
05/15/10 03:46:30 (2 years ago)
Author:
Mike Crute <mcrute@…>
Branch:
default
Message:

Updating documentation to reflect python2.5 as a requirement

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • INSTALL

    r1144 r1370  
    55installed: 
    66 
    7 - Python 2.4 or higher 
     7- Python 2.5 or higher 
    88- Werkzeug 0.5.1* 
    99- Jinja2* 
  • scripts/_make-setup-virtualenv.py

    r1279 r1370  
    2828] 
    2929 
    30 # for python 2.4/2.5 we want simplejson installed too. 
     30# for python 2.5 we want simplejson installed too. 
    3131if sys.version_info < (2, 6): 
    3232    REQUIREMENTS.append('simplejson') 
  • scripts/setup-virtualenv

    r668 r1370  
    1414    import subprocess 
    1515except ImportError, e: 
    16     if sys.version_info <= (2, 3): 
     16    if sys.version_info <= (2, 4): 
    1717        print 'ERROR: %s' % e 
    18         print 'ERROR: this script requires Python 2.4 or greater; or at least the subprocess module.' 
     18        print 'ERROR: this script requires Python 2.5 or greater; or at least the subprocess module.' 
    1919        print 'If you copy subprocess.py from a newer version of Python this script will probably work' 
    2020        sys.exit(101) 
  • servers/zine.cgi

    r1279 r1370  
    55    ~~~~~~~~~~~~~~~ 
    66 
    7     Run Zine as CGI. Requires python 2.5 or python 2.4 with 
     7    Run Zine as CGI. Requires python 2.5 with 
    88    the wsgiref module installed.  For help con configuration 
    99    have a look at the README file. 
Note: See TracChangeset for help on using the changeset viewer.