Author: mtredinnick Date: 2007-10-20 05:37:32 -0500 (Sat, 20 Oct 2007) New Revision: 6559
Modified: django/trunk/docs/install.txt Log: Fixed #5637 -- Clarified that nothing extra is required when using SQLite and Python 2.5. Based on a patch from Matt Boersma. Modified: django/trunk/docs/install.txt =================================================================== --- django/trunk/docs/install.txt 2007-10-20 10:12:59 UTC (rev 6558) +++ django/trunk/docs/install.txt 2007-10-20 10:37:32 UTC (rev 6559) @@ -63,7 +63,10 @@ * If you're using MySQL, you'll need MySQLdb_, version 1.2.1p2 or higher. You will also want to read the database-specific notes for the `MySQL backend`_. -* If you're using SQLite, you'll need pysqlite_. Use version 2.0.3 or higher. +* If you're using SQLite and either Python 2.3 or Python 2.4, you'll need + pysqlite_. Use version 2.0.3 or higher. Python 2.5 ships with an sqlite + wrapper in the standard library, so you don't need to install anything extra + in that case. * If you're using Oracle, you'll need cx_Oracle_, version 4.3.1 or higher. You will also want to read the database-specific notes for the `Oracle backend`_. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
