Drop support for Django 1.3, Python 2.6 and 3.2.

* Shrink the Travis test matrix
* Remove a lot of backported test code
* Update requirements in setup.py
* Update docs

Closes #79
This commit is contained in:
medmunds
2015-05-14 11:39:57 -07:00
parent 99ac099081
commit da260de1a0
10 changed files with 25 additions and 131 deletions

View File

@@ -6,10 +6,10 @@ import json
from django.conf import settings
from django.core.exceptions import ImproperlyConfigured
from django.test import TestCase
from django.test.utils import override_settings
from ..compat import b
from ..signals import webhook_event
from .utils import override_settings
from djrill.compat import b
from djrill.signals import webhook_event
class DjrillWebhookSecretMixinTests(TestCase):