aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-17 11:05:11 +0200
committerAymeric Augustin2013-10-17 18:24:59 +0200
commit0458f6223c0ac5c56ddf8318a1b6ef1a01026a41 (patch)
tree232adfb1d6f51c7a502aad763745e567b76f414c
parentafe4b10accc92672a7ea01ab4a04e602fd7f8566 (diff)
downloaddjango-debug-toolbar-0458f6223c0ac5c56ddf8318a1b6ef1a01026a41.tar.bz2
The actual requirement is Django >= 1.4.2.
Compatibility features for supporting Python 2 and 3 with a single code base were added in Django 1.4.2.
-rw-r--r--README.rst4
-rw-r--r--setup.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 1ba2e06..0f818dc 100644
--- a/README.rst
+++ b/README.rst
@@ -35,8 +35,8 @@ Requirements
The current version of the Debug Toolbar is 0.9.4. It works on Django 1.3 and
1.4.
-The next version will work on Django 1.4 and 1.5. In addition, it will require
-Python 2.6 or later.
+The next version will work on Django 1.4 (1.4.2 or later) and 1.5. In
+addition, it will require Python 2.6 or later.
Installation
============
diff --git a/setup.py b/setup.py
index 066c339..b508d48 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ setup(
license='BSD',
packages=find_packages(exclude=('tests', 'example')),
install_requires=[
- 'django>=1.4,<1.6',
+ 'django>=1.4.2,<1.6',
'sqlparse',
],
test_suite='runtests.runtests',