Edgewall Software

Changes between Version 1 and Version 2 of 0.13/TracInstall


Ignore:
Timestamp:
Sep 1, 2010, 10:31:04 PM (14 years ago)
Author:
Christian Boos
Comment:

updated to Trac 0.13dev: drop compatibility with Python 2.4

Legend:

Unmodified
Added
Removed
Modified
  • 0.13/TracInstall

    v1 v2  
    55  For installing previous Trac versions, please refer to TracInstall (for Trac 0.12) or even [[0.11/TracInstall]]'''
    66}}}
    7 = Trac Installation Guide for 0.12 =
     7= Trac Installation Guide for 0.13 =
    88[[TracGuideToc]]
    99
     
    2222To install Trac, the following software packages must be installed:
    2323
    24  * [http://www.python.org/ Python], version >= 2.4 and < 3.0
    25    (note that we dropped the support for Python 2.3 in this release)
     24 * [http://www.python.org/ Python], version >= 2.5 and < 3.0
     25   (note that we dropped the support for Python 2.4 in this release)
    2626 * [http://peak.telecommunity.com/DevCenter/setuptools setuptools], version >= 0.6
    2727 * [http://genshi.edgewall.org/wiki/Download Genshi], version >= 0.6
     
    3232==== For the SQLite database #ForSQLite
    3333
    34 If you're using Python 2.5 or 2.6, you already have everything you need.
    35 
    36 If you're using Python 2.4 and need pysqlite, you can download from
    37 [http://code.google.com/p/pysqlite/downloads/list google code] the Windows
    38 installers or the tar.gz archive for building from source:
     34As you must be using Python 2.5, 2.6 or 2.7, you already have the SQLite database bindings bundled with the standard distribution of Python (the `sqlite3` module).
     35
     36However, if you'd like, you can download the latest and greatest version of [[trac:Pysqlite]] from
     37[http://code.google.com/p/pysqlite/downloads/list google code], where you'll find the Windows
     38installers or the `tar.gz` archive for building from source:
    3939{{{
    4040$ tar xvfz <version>.tar.gz
     
    4343}}}
    4444 
    45 This will extract the SQLite code and build the bindings.
     45This will download the latest SQLite code and build the bindings.
    4646
    4747SQLite 2.x is no longer supported.
    4848
    4949A known bug PySqlite versions 2.5.2-4 prohibits upgrade of trac databases
    50 from 0.11.x to 0.12. Please use a versions 2.5.5 and newer or 2.5.1 and
     50from 0.11.x to 0.12. Please use versions 2.5.5 and newer or 2.5.1 and
    5151older. See #9434 for more detail.
    5252
     
    132132A few examples:
    133133
    134  - install Trac 0.12:
     134 - install Trac 0.13:
    135135   {{{
    136    easy_install Trac==0.12
     136   easy_install Trac==0.13
    137137   }}}
    138 
    139  - install latest development version 0.12dev:
     138   (NOT YET ENABLED)
     139 - install latest development version 0.13dev:
    140140   {{{
    141141   easy_install Trac==dev
     
    173173Of course, using the python-typical setup at the top of the source directory also works.
    174174
    175 You can obtain the source for a .tar.gz or .zip file corresponding to a release (e.g. Trac-0.12.tar.gz), or you can get the source directly from the repository (see Trac:SubversionRepository for details).
     175You can obtain the source for a .tar.gz or .zip file corresponding to a release (e.g. Trac-0.13.tar.gz), or you can get the source directly from the repository (see Trac:SubversionRepository for details).
    176176
    177177{{{