Improved support of Python-3.5 and Django-1.9. Refs #112, refs #113.

This commit is contained in:
Benoît Bryon 2016-03-14 15:54:56 +01:00
parent 08031dab21
commit ec969efa7e
2 changed files with 1 additions and 2 deletions

View file

@ -1,4 +1,3 @@
{% load url from future %}
<html>
<head>
<title>django-downloadview demo</title>

View file

@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-
"""Test suite around :mod:`django_downloadview.api` and deprecation plan."""
from importlib import import_module
import unittest
from six.moves import reload_module as reload
import warnings
@ -7,7 +8,6 @@ import warnings
from django.core.exceptions import ImproperlyConfigured
import django.test
from django.test.utils import override_settings
from django.utils.importlib import import_module
class APITestCase(unittest.TestCase):