diff options
| author | Aymeric Augustin | 2013-10-16 22:02:20 +0200 |
|---|---|---|
| committer | Aymeric Augustin | 2013-10-17 18:24:57 +0200 |
| commit | a295b02cb8c3b8685f6fe7880b9412566ba1d4f6 (patch) | |
| tree | d51c5bf506ac0de95bcb1bdf566481a7895cba6a | |
| parent | f728b9e208836b8aad1ac10beea2795a7a06261f (diff) | |
| download | django-debug-toolbar-a295b02cb8c3b8685f6fe7880b9412566ba1d4f6.tar.bz2 | |
Bump requirements to Django >= 1.4 & Python >= 2.6
| -rw-r--r-- | .travis.yml | 5 | ||||
| -rw-r--r-- | README.rst | 9 | ||||
| -rw-r--r-- | setup.py | 2 |
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 @@ -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 ============ @@ -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, |
