diff --git a/README.rst b/README.rst index 649a548..f3b809e 100644 --- a/README.rst +++ b/README.rst @@ -23,7 +23,7 @@ Its features include: - Pagination. - Column based table sorting. - Template tag to enable trivial rendering to HTML. -- Generic view mixin for use in Django 1.3. +- Generic view mixin. Creating a table is as simple as: @@ -83,6 +83,7 @@ v1.0.0 - Added Python 3.4 support. - Added Django 1.7 and Django 1.8 support. - Dropped Python 2.6 and 3.2 support. +- Drop Django 1.2 support - Convert tests to using py.test. v0.16.0 diff --git a/django_tables2/columns/base.py b/django_tables2/columns/base.py index d534d66..b0aa69f 100644 --- a/django_tables2/columns/base.py +++ b/django_tables2/columns/base.py @@ -128,8 +128,6 @@ class Column(object): # pylint: disable=R0902 .. attribute:: localize - This attribute doesn't work in Django 1.2 - * If `True`, cells of this column will be localized in the HTML output by the localize filter. diff --git a/requirements/django-1.2.x.pip b/requirements/django-1.2.x.pip deleted file mode 100644 index 9817b15..0000000 --- a/requirements/django-1.2.x.pip +++ /dev/null @@ -1,2 +0,0 @@ --r common.pip -Django>=1.2,<1.3 diff --git a/tox.ini b/tox.ini index 87b3895..e1e6f03 100644 --- a/tox.ini +++ b/tox.ini @@ -88,7 +88,3 @@ deps = -r{toxinidir}/requirements/django-1.4.x.pip [testenv:py27-dj13] basepython = python2.7 deps = -r{toxinidir}/requirements/django-1.3.x.pip - -[testenv:py27-dj12] -basepython = python2.7 -deps = -r{toxinidir}/requirements/django-1.2.x.pip