From 224d19e7510ea7d350b6ce3ec1f0114df9eac789 Mon Sep 17 00:00:00 2001 From: Bradley Ayers Date: Sat, 18 Apr 2015 08:04:38 +1000 Subject: [PATCH] Change version to 0.16.1.dev0 to avoid setuptools warnings. --- django_tables2/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django_tables2/__init__.py b/django_tables2/__init__.py index 6e0d37c..771e04c 100644 --- a/django_tables2/__init__.py +++ b/django_tables2/__init__.py @@ -7,9 +7,9 @@ from .columns import (BooleanColumn, Column, CheckBoxColumn, DateColumn, from .config import RequestConfig from .utils import A, Attrs try: - from .views import SingleTableMixin, SingleTableView + from .views import SingleTableMixin, SingleTableView except ImportError: pass -__version__ = "0.16.1.dev" +__version__ = "0.16.1.dev0"