From 2f17153c0271b5bd421a3975e1b21c98b7912355 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sat, 20 Oct 2007 10:37:32 +0000 Subject: [PATCH] Fixed #5637 -- Clarified that nothing extra is required when using SQLite and Python 2.5. Based on a patch from Matt Boersma. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6559 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/install.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/install.txt b/docs/install.txt index 95aa82b2e31..519bf2674c3 100644 --- a/docs/install.txt +++ b/docs/install.txt @@ -63,7 +63,10 @@ installed. * 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`_.