aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml5
-rw-r--r--README.rst9
-rw-r--r--setup.py2
3 files changed, 11 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index c5385b0..67b07a4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,9 +3,8 @@ python:
- "2.6"
- "2.7"
env:
- - DJANGO_VERSION=1.3.7
- - DJANGO_VERSION=1.4.5
- - DJANGO_VERSION=1.5.1
+ - DJANGO_VERSION=1.4.8
+ - DJANGO_VERSION=1.5.4
install:
- pip install Django==$DJANGO_VERSION
script: python setup.py test
diff --git a/README.rst b/README.rst
index 1a3e541..1ba2e06 100644
--- a/README.rst
+++ b/README.rst
@@ -29,7 +29,14 @@ There is also one Django management command currently:
If you have ideas for other panels please let us know.
-* Note: The Debug Toolbar only works on Django 1.3 and newer.
+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.
Installation
============
diff --git a/setup.py b/setup.py
index 06cd86f..ced3b2d 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ setup(
license='BSD',
packages=find_packages(exclude=('tests', 'example')),
tests_require=[
- 'django>=1.3,<1.6',
+ 'django>=1.4,<1.6',
],
test_suite='runtests.runtests',
include_package_data=True,