From 7d8908daabdf3541b965e7edf86d95388ea94a42 Mon Sep 17 00:00:00 2001 From: Johannes Hoppe Date: Tue, 26 Jan 2016 17:55:56 +0100 Subject: [PATCH] Fixes version number and QA issue --- django_select2/__init__.py | 2 +- tests/test_views.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/django_select2/__init__.py b/django_select2/__init__.py index 80d2d2b..43e7b1e 100644 --- a/django_select2/__init__.py +++ b/django_select2/__init__.py @@ -9,4 +9,4 @@ The app includes Select2 driven Django Widgets and Form Fields. """ -__version__ = "5.6.0" +__version__ = "5.7.0" diff --git a/tests/test_views.py b/tests/test_views.py index e99cd89..6e4f387 100644 --- a/tests/test_views.py +++ b/tests/test_views.py @@ -13,7 +13,6 @@ from tests.testapp.forms import ( AlbumModelSelect2WidgetForm, ArtistCustomTitleWidget ) from tests.testapp.models import Genre -from django_select2.conf import settings class TestAutoResponseView(object):