# HG changeset patch # User cmlenz # Date 1213028429 0 # Node ID 211cd26d6fd956f01677f8db8216e1723fc54366 # Parent a264d27a8f62982f317529beb0adfb1c7156bb5d Document dropping of Python 2.3 compat. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Version 0.6 +http://svn.edgewall.org/repos/genshi/tags/0.6.0/ +(???, from branches/stable/0.6.x) + + * Support for Python 2.3 has been dropped. + + Version 0.5 http://svn.edgewall.org/repos/genshi/tags/0.5.0/ (Jun 9 2008, from branches/stable/0.5.x) diff --git a/doc/install.txt b/doc/install.txt --- a/doc/install.txt +++ b/doc/install.txt @@ -10,8 +10,8 @@ Prerequisites ------------- -* Python_ 2.3 or later (2.4 or later is strongly recommended) -* Optional: Setuptools_ 0.6a2 or later +* Python_ 2.4 or later +* Optional: Setuptools_ 0.6c3 or later .. _python: http://www.python.org/ .. _setuptools: http://cheeseshop.python.org/pypi/setuptools diff --git a/doc/templates.txt b/doc/templates.txt --- a/doc/templates.txt +++ b/doc/templates.txt @@ -270,12 +270,6 @@ into a sandboxable template engine; there are sufficient ways to do harm even using plain expressions. -.. warning:: Unfortunately, code blocks are severely limited when running - under Python 2.3: For example, it is not possible to access - variables defined in outer scopes. If you plan to use code blocks - extensively, it is strongly recommended that you run Python 2.4 - or later. - .. _`error handling`: diff --git a/doc/upgrade.txt b/doc/upgrade.txt --- a/doc/upgrade.txt +++ b/doc/upgrade.txt @@ -9,6 +9,17 @@ ------------------------------------ +Upgrading from Genshi 0.5.x to 0.6.x +------------------------------------ + +Required Python Version +----------------------- + +Support for Python 2.3 has been dropped in this release. Python 2.4 is +now the minimum version of Python required to run Genshi. + + +------------------------------------ Upgrading from Genshi 0.4.x to 0.5.x ------------------------------------